diff options
author | Guido van Rossum <guido@python.org> | 2001-09-18 20:34:19 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-09-18 20:34:19 (GMT) |
commit | eb9490526508dc643c2329771f95a925e5412049 (patch) | |
tree | f35a046394b4aef383c51cd303cb9d38fcc8db1c /Lib | |
parent | 89fb72dd76e0ba32c919671cdddb500bbc4e2f0a (diff) | |
download | cpython-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-x | Lib/test/regrtest.py | 3 |
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 |