summaryrefslogtreecommitdiff
path: root/Lib/test/test_strftime.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-02-08 22:40:51 +0000
committerGeorg Brandl <georg@python.org>2010-02-08 22:40:51 +0000
commit4fc2a2db23688ea6b238b4ccbdf1bbadfdd460dd (patch)
tree731777546210f6dee59b5de1e93e5f724295b3b9 /Lib/test/test_strftime.py
parentb229d0c0720bf3b51225a918146b45226b6c6188 (diff)
downloadcpython-4fc2a2db23688ea6b238b4ccbdf1bbadfdd460dd.tar.gz
Fix missing string formatting placeholder.
Diffstat (limited to 'Lib/test/test_strftime.py')
-rwxr-xr-xLib/test/test_strftime.py2
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