summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2005-12-05 01:23:48 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2005-12-05 01:23:48 (GMT)
commitec77645df98b2ae8ce13c80359e69998ff4d6f4c (patch)
treee33886b29c779ab388f72c94e072f9d9517cf52f
parenta6fc397a801a4e870e4e2582eb6f902470cdaa01 (diff)
downloadcpython-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.py2
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()