diff options
| author | Barry Warsaw | 2009-11-01 22:52:14 -0500 |
|---|---|---|
| committer | Barry Warsaw | 2009-11-01 22:52:14 -0500 |
| commit | c9d9f209a26f64bb54ec6e31b9c2d5a8d030b8e0 (patch) | |
| tree | 7f1216c604339901824f02f767995504dd024dc0 /src/mailman/pipeline/file_recipients.py | |
| parent | d49e812a80fadbd04c377c1954fb99b3d99f95ca (diff) | |
| download | mailman-c9d9f209a26f64bb54ec6e31b9c2d5a8d030b8e0.tar.gz mailman-c9d9f209a26f64bb54ec6e31b9c2d5a8d030b8e0.tar.zst mailman-c9d9f209a26f64bb54ec6e31b9c2d5a8d030b8e0.zip | |
Diffstat (limited to 'src/mailman/pipeline/file_recipients.py')
| -rw-r--r-- | src/mailman/pipeline/file_recipients.py | 6 |
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 |
