diff options
author | Georg Brandl <georg@python.org> | 2010-02-08 22:40:51 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-02-08 22:40:51 +0000 |
commit | 0c4783a33c9c89b7c17a6b122e8cc72152609b6e (patch) | |
tree | 470f2655d406b1ec5c1d5e20c12e76ec7e6b3959 /Lib/test/test_strftime.py | |
parent | e64c442ff707c4278363247d6a51fb317a13f9e0 (diff) | |
download | cpython-git-0c4783a33c9c89b7c17a6b122e8cc72152609b6e.tar.gz |
Fix missing string formatting placeholder.
Diffstat (limited to 'Lib/test/test_strftime.py')
-rwxr-xr-x | Lib/test/test_strftime.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_strftime.py b/Lib/test/test_strftime.py index 41e16f523f..5043bfaf32 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 |