summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorAnthony Baxter <anthonybaxter@gmail.com>2004-06-11 15:57:49 (GMT)
committerAnthony Baxter <anthonybaxter@gmail.com>2004-06-11 15:57:49 (GMT)
commit01e80b45d6f2d2b2eac5e81731c3af80f09214c2 (patch)
tree585d58421250164dde6aba4aaf6d5d378262b4b2 /Lib
parent3ecdb250afb74f77b1148dea2bf08775f9de2ab3 (diff)
downloadcpython-01e80b45d6f2d2b2eac5e81731c3af80f09214c2.zip
cpython-01e80b45d6f2d2b2eac5e81731c3af80f09214c2.tar.gz
cpython-01e80b45d6f2d2b2eac5e81731c3af80f09214c2.tar.bz2
fix a poorly worded error message
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_timeout.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_timeout.py b/Lib/test/test_timeout.py
index c0e1b13..de6aec4 100644
--- a/Lib/test/test_timeout.py
+++ b/Lib/test/test_timeout.py
@@ -118,7 +118,7 @@ class TimeoutTestCase(unittest.TestCase):
_delta = abs(_t1 - _t2)
self.assert_(_delta < _timeout + self.fuzz,
- "timeout (%g) is %g seconds more than expected (%g)"
+ "timeout (%g) is more than %g seconds more than expected (%g)"
%(_delta, self.fuzz, _timeout))
def testRecvTimeout(self):