From: Anthony Baxter Date: Fri, 11 Jun 2004 15:57:49 +0000 (+0000) Subject: fix a poorly worded error message X-Git-Tag: v2.4a1~206 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=01e80b45d6f2d2b2eac5e81731c3af80f09214c2;p=python fix a poorly worded error message --- diff --git a/Lib/test/test_timeout.py b/Lib/test/test_timeout.py index c0e1b13aac..de6aec453d 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):