diff --git a/sith.py b/sith.py index 7736ab8a7..1a69d2ad5 100755 --- a/sith.py +++ b/sith.py @@ -176,9 +176,9 @@ def show_definitions(self): def show_errors(self): sys.stderr.write(self.traceback) print(("Error with running Script(...).{operation}() with\n" - "\tpath: {path}\n" - "\tline: {line}\n" - "\tcolumn: {column}").format(**self.__dict__)) + "\tpath: {path}\n" + "\tline: {line}\n" + "\tcolumn: {column}").format(**self.__dict__)) def main(arguments): @@ -198,10 +198,10 @@ def main(arguments): else: t.run(debugger) elif arguments['run']: - TestCase( - arguments[''], arguments[''], - int(arguments['']), int(arguments['']) - ).run(debugger, print_result=True) + TestCase( + arguments[''], arguments[''], + int(arguments['']), int(arguments['']) + ).run(debugger, print_result=True) else: for _ in range(int(arguments['--maxtries'])): t = TestCase.generate(arguments[''] or '.')