Kaydet (Commit) 0c4783a3 authored tarafından Georg Brandl's avatar Georg Brandl

Fix missing string formatting placeholder.

üst e64c442f
...@@ -118,7 +118,7 @@ class StrftimeTest(unittest.TestCase): ...@@ -118,7 +118,7 @@ class StrftimeTest(unittest.TestCase):
try: try:
result = time.strftime(e[0], now) result = time.strftime(e[0], now)
except ValueError, error: except ValueError, error:
print "Standard '%s' format gaver error:" % (e[0], error) print "Standard '%s' format gave error: %s" % (e[0], error)
continue continue
if re.match(escapestr(e[1], self.ampm), result): if re.match(escapestr(e[1], self.ampm), result):
continue continue
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment