File tree 1 file changed +7
-7
lines changed
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):
176
176
def show_errors (self ):
177
177
sys .stderr .write (self .traceback )
178
178
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__ ))
182
182
183
183
184
184
def main (arguments ):
@@ -198,10 +198,10 @@ def main(arguments):
198
198
else :
199
199
t .run (debugger )
200
200
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 )
205
205
else :
206
206
for _ in range (int (arguments ['--maxtries' ])):
207
207
t = TestCase .generate (arguments ['<path>' ] or '.' )
You can’t perform that action at this time.
0 commit comments