summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-09-18 20:34:19 (GMT)
committerGuido van Rossum <guido@python.org>2001-09-18 20:34:19 (GMT)
commiteb9490526508dc643c2329771f95a925e5412049 (patch)
treef35a046394b4aef383c51cd303cb9d38fcc8db1c /Lib
parent89fb72dd76e0ba32c919671cdddb500bbc4e2f0a (diff)
downloadcpython-eb9490526508dc643c2329771f95a925e5412049.zip
cpython-eb9490526508dc643c2329771f95a925e5412049.tar.gz
cpython-eb9490526508dc643c2329771f95a925e5412049.tar.bz2
Get rid of a superfluous space after "--" in the message printed for a
skipped test -- the print command already supplies a space.
Diffstat (limited to 'Lib')
-rwxr-xr-xLib/test/regrtest.py3
1 files changed, 1 insertions, 2 deletions
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 @@ 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