Get rid of a superfluous space after "--" in the message printed for a
skipped test -- the print command already supplies a space.
This commit is contained in:
parent
89fb72dd76
commit
eb94905265
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue