]> granicus.if.org Git - python/commitdiff
Get rid of a superfluous space after "--" in the message printed for a
authorGuido van Rossum <guido@python.org>
Tue, 18 Sep 2001 20:34:19 +0000 (20:34 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 18 Sep 2001 20:34:19 +0000 (20:34 +0000)
skipped test -- the print command already supplies a space.

Lib/test/regrtest.py

index 16d51ea913a7eee86c746f8cec952ae31efaacd4..08c0875ae0a1e595732f6d2baef36227490b4b6b 100755 (executable)
@@ -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