Fix missing string formatting placeholder.
diff --git a/Lib/test/test_strftime.py b/Lib/test/test_strftime.py
index 41e16f5..5043bfa 100755
--- a/Lib/test/test_strftime.py
+++ b/Lib/test/test_strftime.py
@@ -118,7 +118,7 @@
             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