summaryrefslogtreecommitdiff
path: root/Mailman/Handlers/ToOutgoing.py
diff options
context:
space:
mode:
authorbwarsaw2002-03-07 16:56:22 +0000
committerbwarsaw2002-03-07 16:56:22 +0000
commit2c21be0d6c12b7b7cfcb0b443d243ba2d837081a (patch)
tree6e420cc5a9c57c54d318b5c6bf3e44cd47c6f488 /Mailman/Handlers/ToOutgoing.py
parent4924be6a02723105e8aa5f9caf5e7e46b740b883 (diff)
downloadmailman-2c21be0d6c12b7b7cfcb0b443d243ba2d837081a.tar.gz
mailman-2c21be0d6c12b7b7cfcb0b443d243ba2d837081a.tar.zst
mailman-2c21be0d6c12b7b7cfcb0b443d243ba2d837081a.zip
Diffstat (limited to 'Mailman/Handlers/ToOutgoing.py')
-rw-r--r--Mailman/Handlers/ToOutgoing.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Mailman/Handlers/ToOutgoing.py b/Mailman/Handlers/ToOutgoing.py
index f00e80246..45f23ff51 100644
--- a/Mailman/Handlers/ToOutgoing.py
+++ b/Mailman/Handlers/ToOutgoing.py
@@ -32,9 +32,9 @@ def process(mlist, msg, msgdata):
# that runner loads the list unlocked and we can't have it re-load the
# list state for every cycle through its mainloop.
interval = mm_cfg.VERP_DELIVERY_INTERVAL
- # If occasional VERPing is turned on, and we aren't already VERPing the
- # message...
- if interval > 0 and not msgdata.get('verp'):
+ # If occasional VERPing is turned on, and we haven't't already made a
+ # VERPing decision...
+ if interval > 0 and not msgdata.has_key('verp'):
if interval == 1:
# VERP every time
msgdata['verp'] = 1