diff options
author | Brett Cannon <bcannon@gmail.com> | 2005-08-27 19:25:59 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2005-08-27 19:25:59 (GMT) |
commit | 6e372d1422dfaf5b1cd2ab2f48a42ee609cc119c (patch) | |
tree | 87e8660a93cd51aaffee6035051404f58ea3fb30 | |
parent | 0738206e79d700121e7a1850651de18413afdc14 (diff) | |
download | cpython-6e372d1422dfaf5b1cd2ab2f48a42ee609cc119c.zip cpython-6e372d1422dfaf5b1cd2ab2f48a42ee609cc119c.tar.gz cpython-6e372d1422dfaf5b1cd2ab2f48a42ee609cc119c.tar.bz2 |
fix bug where str.find() was being misused where __contains__ should have been
used.
-rw-r--r-- | Lib/_strptime.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/_strptime.py b/Lib/_strptime.py index a6b54f3..aa02ba1 100644 --- a/Lib/_strptime.py +++ b/Lib/_strptime.py @@ -148,7 +148,7 @@ class LocaleTime(object): if old: current_format = current_format.replace(old, new) time_tuple = time.struct_time((1999,1,3,1,1,1,6,3,0)) - if time.strftime(directive, time_tuple).find('00'): + if '00' in time.strftime(directive, time_tuple): U_W = '%U' else: U_W = '%W' |