From ec77645df98b2ae8ce13c80359e69998ff4d6f4c Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Mon, 5 Dec 2005 01:23:48 +0000 Subject: [PATCH] mwh spotted a copied error message, make it unique (and correct) --- Lib/test/test_file.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_file.py b/Lib/test/test_file.py index 0803490add6..ade7a6fb96b 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()