summaryrefslogtreecommitdiff
path: root/src/mailman/app/subscriptions.py
diff options
context:
space:
mode:
authorMark Sapiro2016-12-04 23:21:18 +0000
committerMark Sapiro2016-12-04 23:21:18 +0000
commit28777416b09e397e69864caf0bbdd93a3f1aa1e2 (patch)
treedd281ef5bb33d7ce3e438deb920aa4df390776da /src/mailman/app/subscriptions.py
parent96757fbf7535f17288c5a7e755a8cb0c1afd7b1b (diff)
downloadmailman-28777416b09e397e69864caf0bbdd93a3f1aa1e2.tar.gz
mailman-28777416b09e397e69864caf0bbdd93a3f1aa1e2.tar.zst
mailman-28777416b09e397e69864caf0bbdd93a3f1aa1e2.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 f88a967c2..52c90ded1 100644
--- a/src/mailman/app/subscriptions.py
+++ b/src/mailman/app/subscriptions.py
@@ -287,7 +287,7 @@ class SubscriptionWorkflow(_SubscriptionWorkflowCommon):
msg = UserNotification(
self.mlist.owner_address, self.mlist.owner_address,
subject, text, self.mlist.preferred_language)
- msg.send(self.mlist, to_moderators=True)
+ msg.send(self.mlist)
# The workflow must stop running here.
raise StopIteration
@@ -435,7 +435,7 @@ class UnSubscriptionWorkflow(_SubscriptionWorkflowCommon):
msg = UserNotification(
self.mlist.owner_address, self.mlist.owner_address,
subject, text, self.mlist.preferred_language)
- msg.send(self.mlist, to_moderators=True)
+ msg.send(self.mlist)
# The workflow must stop running here
raise StopIteration