mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
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
1 changed files with 1 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue