diff options
Diffstat (limited to 'Lib/test/test_strftime.py')
| -rwxr-xr-x | Lib/test/test_strftime.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_strftime.py b/Lib/test/test_strftime.py index 1ccb84b..c713d05 100755 --- a/Lib/test/test_strftime.py +++ b/Lib/test/test_strftime.py @@ -116,7 +116,7 @@ def strftest(now):          if re.match(e[1], result):              if verbose:                  print "Supports nonstandard '%s' format (%s)" % (e[0], e[2]) -        elif result[0] == '%': +        elif not result or result[0] == '%':              if verbose:                  print "Does not appear to support '%s' format (%s)" % (e[0],                                                                         e[2])  | 
