From 0c4783a33c9c89b7c17a6b122e8cc72152609b6e Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Mon, 8 Feb 2010 22:40:51 +0000 Subject: [PATCH] Fix missing string formatting placeholder. --- Lib/test/test_strftime.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_strftime.py b/Lib/test/test_strftime.py index 41e16f523fa..5043bfaf329 100755 --- a/Lib/test/test_strftime.py +++ b/Lib/test/test_strftime.py @@ -118,7 +118,7 @@ class StrftimeTest(unittest.TestCase): try: result = time.strftime(e[0], now) except ValueError, error: - print "Standard '%s' format gaver error:" % (e[0], error) + print "Standard '%s' format gave error: %s" % (e[0], error) continue if re.match(escapestr(e[1], self.ampm), result): continue