Commit eb949052 authored by Guido van Rossum's avatar Guido van Rossum

Get rid of a superfluous space after "--" in the message printed for a

skipped test -- the print command already supplies a space.
parent 89fb72dd
......@@ -312,8 +312,7 @@ def runtest(test, generate, verbose, quiet, testdir = None):
sys.stdout = save_stdout
except (ImportError, test_support.TestSkipped), msg:
if not quiet:
print "test", test,
print "skipped -- ", msg
print "test", test, "skipped --", msg
return -1
except KeyboardInterrupt:
raise
......
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