summaryrefslogtreecommitdiff
path: root/src/mailman/app/subscriptions.py
diff options
context:
space:
mode:
authorBarry Warsaw2016-11-14 03:30:54 +0000
committerBarry Warsaw2016-11-14 03:30:54 +0000
commit54d32b872ee4e67a64a176077dbc49a4f87b9324 (patch)
treeba9170245c9f9c87f5604e02a8dc1aaf37443319 /src/mailman/app/subscriptions.py
parent366dc6517716b7c77c4b7a76559b1b6b5996fc8e (diff)
parenta9e62e4350d1a108af972ab9dc2043f76b98a04c (diff)
downloadmailman-54d32b872ee4e67a64a176077dbc49a4f87b9324.tar.gz
mailman-54d32b872ee4e67a64a176077dbc49a4f87b9324.tar.zst
mailman-54d32b872ee4e67a64a176077dbc49a4f87b9324.zip
Diffstat (limited to 'src/mailman/app/subscriptions.py')
-rw-r--r--src/mailman/app/subscriptions.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mailman/app/subscriptions.py b/src/mailman/app/subscriptions.py
index 9e915a25d..9e8d8dd9d 100644
--- a/src/mailman/app/subscriptions.py
+++ b/src/mailman/app/subscriptions.py
@@ -286,7 +286,7 @@ class SubscriptionWorkflow(_SubscriptionWorkflowCommon):
msg = UserNotification(
self.mlist.owner_address, self.mlist.owner_address,
subject, text, self.mlist.preferred_language)
- msg.send(self.mlist, tomoderators=True)
+ msg.send(self.mlist, to_moderators=True)
# The workflow must stop running here.
raise StopIteration
@@ -434,7 +434,7 @@ class UnSubscriptionWorkflow(_SubscriptionWorkflowCommon):
msg = UserNotification(
self.mlist.owner_address, self.mlist.owner_address,
subject, text, self.mlist.preferred_language)
- msg.send(self.mlist, tomoderators=True)
+ msg.send(self.mlist, to_moderators=True)
# The workflow must stop running here
raise StopIteration