File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -176,9 +176,9 @@ def show_definitions(self):
176176 def show_errors (self ):
177177 sys .stderr .write (self .traceback )
178178 print (("Error with running Script(...).{operation}() with\n "
179- "\t path: {path}\n "
180- "\t line: {line}\n "
181- "\t column: {column}" ).format (** self .__dict__ ))
179+ "\t path: {path}\n "
180+ "\t line: {line}\n "
181+ "\t column: {column}" ).format (** self .__dict__ ))
182182
183183
184184def main (arguments ):
@@ -198,10 +198,10 @@ def main(arguments):
198198 else :
199199 t .run (debugger )
200200 elif arguments ['run' ]:
201- TestCase (
202- arguments ['<operation>' ], arguments ['<path>' ],
203- int (arguments ['<line>' ]), int (arguments ['<column>' ])
204- ).run (debugger , print_result = True )
201+ TestCase (
202+ arguments ['<operation>' ], arguments ['<path>' ],
203+ int (arguments ['<line>' ]), int (arguments ['<column>' ])
204+ ).run (debugger , print_result = True )
205205 else :
206206 for _ in range (int (arguments ['--maxtries' ])):
207207 t = TestCase .generate (arguments ['<path>' ] or '.' )
You can’t perform that action at this time.
0 commit comments