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 16d51ea..08c0875 100755
--- a/Lib/test/regrtest.py
+++ b/Lib/test/regrtest.py
@@ -312,8 +312,7 @@
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