From: Guido van Rossum Date: Tue, 18 Sep 2001 20:34:19 +0000 (+0000) Subject: Get rid of a superfluous space after "--" in the message printed for a X-Git-Tag: v2.2.1c1~1745 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eb9490526508dc643c2329771f95a925e5412049;p=python Get rid of a superfluous space after "--" in the message printed for a skipped test -- the print command already supplies a space. --- diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index 16d51ea913..08c0875ae0 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -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