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:
Guido van Rossum 2001-09-18 20:34:19 +00:00
parent 89fb72dd76
commit eb94905265
1 changed files with 1 additions and 2 deletions

View File

@ -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