diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2004-06-01 12:48:19 +0000 |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2004-06-01 12:48:19 +0000 |
commit | 09e2cb0ba70aeb52bf6562120103573d7f65cbd6 (patch) | |
tree | e3e9cd2316a373b39f08b635b5f0ebe818fb5483 /Lib | |
parent | 41bd02256f5a2348d2de3d6e5fdfcaeb2fcaaebc (diff) | |
download | cpython-git-09e2cb0ba70aeb52bf6562120103573d7f65cbd6.tar.gz |
[Bug #962631] Fix typo reported by Bryan Blackburn
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_sax.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_sax.py b/Lib/test/test_sax.py index 8e279ce520..8786094a97 100644 --- a/Lib/test/test_sax.py +++ b/Lib/test/test_sax.py @@ -27,7 +27,7 @@ def confirm(outcome, name): tests = tests + 1 if outcome: if verbose: - print "Failed", name + print "Passed", name else: failures.append(name) |