summaryrefslogtreecommitdiff
path: root/Mailman/Handlers/Approve.py
diff options
context:
space:
mode:
authorbwarsaw2001-10-01 16:37:18 +0000
committerbwarsaw2001-10-01 16:37:18 +0000
commit2b4c93ce5af0297d0efbee3faa0168cc0a2c74b1 (patch)
tree930d994010024c8d4deba2ab9a59241a58283e08 /Mailman/Handlers/Approve.py
parent96aec99f845af72c50a85ee562b3f1ce9e096114 (diff)
downloadmailman-2b4c93ce5af0297d0efbee3faa0168cc0a2c74b1.tar.gz
mailman-2b4c93ce5af0297d0efbee3faa0168cc0a2c74b1.tar.zst
mailman-2b4c93ce5af0297d0efbee3faa0168cc0a2c74b1.zip
Diffstat (limited to 'Mailman/Handlers/Approve.py')
-rw-r--r--Mailman/Handlers/Approve.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Handlers/Approve.py b/Mailman/Handlers/Approve.py
index d0112e6fe..269572532 100644
--- a/Mailman/Handlers/Approve.py
+++ b/Mailman/Handlers/Approve.py
@@ -48,6 +48,6 @@ def process(mlist, msg, msgdata):
# match? For now we'll let it percolate up for further determination.
msgdata['approved'] = 1
# has this message already been posted to this list?
- beentheres = [s.strip().lower() for s in msg.getall('x-beenthere')]
+ beentheres = [s.strip().lower() for s in msg.get_all('x-beenthere')]
if mlist.GetListEmail().lower() in beentheres:
raise Errors.LoopError