diff options
Diffstat (limited to 'Mailman/Queue/Switchboard.py')
-rw-r--r-- | Mailman/Queue/Switchboard.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Queue/Switchboard.py b/Mailman/Queue/Switchboard.py index e38c0cdb..9a45280d 100644 --- a/Mailman/Queue/Switchboard.py +++ b/Mailman/Queue/Switchboard.py @@ -187,7 +187,7 @@ class Switchboard: # comparisons need to be <= to get complete range. if lower is None or (lower <= long(digest, 16) <= upper): key = float(when) - while key in times.keys(): + while times.has_key(key): key += DELTA times[key] = filebase # FIFO sort |