summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xLib/test/test_strftime.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_strftime.py b/Lib/test/test_strftime.py
index 28ae4c6..ca0e48e 100755
--- a/Lib/test/test_strftime.py
+++ b/Lib/test/test_strftime.py
@@ -91,8 +91,7 @@ for e in expectations:
result = time.strftime(e[0], now)
if result == e[1]: continue
if result[0] == '%':
- if verbose:
- print "Does not appear to support '%s' format" % e[0]
+ print "Does not appear to support '%s' format" % e[0]
else:
print "Conflict for %s (%s):" % (e[0], e[2])
print " Expected %s, but got %s" % (e[1], result)