summaryrefslogtreecommitdiff
path: root/src/mailman/pipeline/owner_recipients.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman/pipeline/owner_recipients.py')
-rw-r--r--src/mailman/pipeline/owner_recipients.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mailman/pipeline/owner_recipients.py b/src/mailman/pipeline/owner_recipients.py
index ceb6ae0a1..ca6c17bd9 100644
--- a/src/mailman/pipeline/owner_recipients.py
+++ b/src/mailman/pipeline/owner_recipients.py
@@ -28,7 +28,7 @@ __all__ = [
def process(mlist, msg, msgdata):
# The recipients are the owner and the moderator
- msgdata['recips'] = mlist.owner + mlist.moderator
+ msgdata['recipients'] = mlist.owner + mlist.moderator
# Don't decorate these messages with the header/footers
msgdata['nodecorate'] = True
msgdata['personalize'] = False