From: Neal Norwitz Date: Mon, 5 Dec 2005 01:23:48 +0000 (+0000) Subject: mwh spotted a copied error message, make it unique (and correct) X-Git-Tag: v2.5a0~1070 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ec77645df98b2ae8ce13c80359e69998ff4d6f4c;p=thirdparty%2FPython%2Fcpython.git mwh spotted a copied error message, make it unique (and correct) --- diff --git a/Lib/test/test_file.py b/Lib/test/test_file.py index 0803490add62..ade7a6fb96b6 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()