Commit 2cc8163e authored by Barry Warsaw's avatar Barry Warsaw

nonstandard_expectations is only added when in verbose mode, so we

don't need the if test for verbosity when checking for results of an
unsupported option.
parent 4c23b5fd
......@@ -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)
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