diff options
author | Fred Drake <fdrake@acm.org> | 2002-10-17 20:36:08 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2002-10-17 20:36:08 (GMT) |
commit | de4742b87f7775fc3d9fa76cd640e7cdd5ef69a2 (patch) | |
tree | 70b4d62245a50a1fac8152113992ab78a893f8b9 /Lib | |
parent | 330f72c6dfcd27479e1a9b707f20f24f3c4326a5 (diff) | |
download | cpython-de4742b87f7775fc3d9fa76cd640e7cdd5ef69a2.zip cpython-de4742b87f7775fc3d9fa76cd640e7cdd5ef69a2.tar.gz cpython-de4742b87f7775fc3d9fa76cd640e7cdd5ef69a2.tar.bz2 |
Remove spurious cruft from the output.
Diffstat (limited to 'Lib')
-rwxr-xr-x | Lib/test/regrtest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index 248bad4..7393db1 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -369,7 +369,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, "skipped --", msg + print test, "skipped --", msg sys.stdout.flush() return -1 except KeyboardInterrupt: |