Commit 1bb33eac authored by Fred Drake's avatar Fred Drake

Do not start the traceback on the same line as the name of the file we are

testing.
parent 341584ac
......@@ -140,9 +140,11 @@ def main():
finally:
sys.stdout, sys.argv = save
except:
print sys.exc_type
errors = 1
if not quiet:
if quiet:
print sys.exc_type
else:
print "Failed:"
traceback.print_exc()
continue
head, tail = os.path.split(arg)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment