summaryrefslogtreecommitdiff
path: root/src/mailman/pipeline/file_recipients.py
diff options
context:
space:
mode:
authorBarry Warsaw2009-11-02 21:59:27 -0500
committerBarry Warsaw2009-11-02 21:59:27 -0500
commitf5f8eb69849264e2647c192963b6aeec97dd43ed (patch)
treeba95236f769894b593dc9585cdfc2362d0aeb806 /src/mailman/pipeline/file_recipients.py
parent9bd005cfcca26b9f02b96bba5076cd9e58421e98 (diff)
parent1e8d8bfdb64968763a6a4fbd74ad912eb4c6c0b6 (diff)
downloadmailman-f5f8eb69849264e2647c192963b6aeec97dd43ed.tar.gz
mailman-f5f8eb69849264e2647c192963b6aeec97dd43ed.tar.zst
mailman-f5f8eb69849264e2647c192963b6aeec97dd43ed.zip
Diffstat (limited to 'src/mailman/pipeline/file_recipients.py')
-rw-r--r--src/mailman/pipeline/file_recipients.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mailman/pipeline/file_recipients.py b/src/mailman/pipeline/file_recipients.py
index fd2db596a..c3d995a9c 100644
--- a/src/mailman/pipeline/file_recipients.py
+++ b/src/mailman/pipeline/file_recipients.py
@@ -45,7 +45,7 @@ class FileRecipients:
def process(self, mlist, msg, msgdata):
"""See `IHandler`."""
- if 'recips' in msgdata:
+ if 'recipients' in msgdata:
return
filename = os.path.join(mlist.data_path, 'members.txt')
try:
@@ -54,11 +54,11 @@ class FileRecipients:
except IOError, e:
if e.errno <> errno.ENOENT:
raise
- msgdata['recips'] = set()
+ msgdata['recipients'] = set()
return
# If the sender is a member of the list, remove them from the file
# recipients.
member = mlist.members.get_member(msg.sender)
if member is not None:
addrs.discard(member.address.address)
- msgdata['recips'] = addrs
+ msgdata['recipients'] = addrs