diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2005-12-05 01:23:48 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2005-12-05 01:23:48 (GMT) |
commit | ec77645df98b2ae8ce13c80359e69998ff4d6f4c (patch) | |
tree | e33886b29c779ab388f72c94e072f9d9517cf52f | |
parent | a6fc397a801a4e870e4e2582eb6f902470cdaa01 (diff) | |
download | cpython-ec77645df98b2ae8ce13c80359e69998ff4d6f4c.zip cpython-ec77645df98b2ae8ce13c80359e69998ff4d6f4c.tar.gz cpython-ec77645df98b2ae8ce13c80359e69998ff4d6f4c.tar.bz2 |
mwh spotted a copied error message, make it unique (and correct)
-rw-r--r-- | Lib/test/test_file.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_file.py b/Lib/test/test_file.py index 0803490..ade7a6f 100644 --- a/Lib/test/test_file.py +++ b/Lib/test/test_file.py @@ -112,7 +112,7 @@ try: except IOError: pass else: - print "should not be able to seek on sys.stdin" + print "should not be able to tell on sys.stdin" try: sys.stdin.truncate() |