Добавил отладочный вывод при нераспознаном шаге (команде)

This commit is contained in:
rzaitov 2013-11-01 13:03:23 +04:00
parent 8cd7c6557c
commit f3b2e324e2
1 changed files with 2 additions and 1 deletions

View File

@ -29,4 +29,5 @@ class StepsRunner:
cmd = self.removeProjectBuilder.getCommandFor(line)
cmd.execute()
else:
raise Exception('unrecognised step')
msg = "unrecognised step. Line: '{0}'".format(line)
raise Exception(msg)