summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbwarsaw1998-07-06 15:47:27 +0000
committerbwarsaw1998-07-06 15:47:27 +0000
commit2a85306bcb9528027d1da53f8679baf4f22012f4 (patch)
treea99535551651e57bfaa21c1aa2687a1335c82376
parent5308be6e2ff8a5f1944f3d04fdd0306fbcfe7f7f (diff)
downloadmailman-2a85306bcb9528027d1da53f8679baf4f22012f4.tar.gz
mailman-2a85306bcb9528027d1da53f8679baf4f22012f4.tar.zst
mailman-2a85306bcb9528027d1da53f8679baf4f22012f4.zip
-rw-r--r--Mailman/Deliverer.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/Deliverer.py b/Mailman/Deliverer.py
index 8ed668df0..f3ec4b0ad 100644
--- a/Mailman/Deliverer.py
+++ b/Mailman/Deliverer.py
@@ -31,12 +31,12 @@ import Utils
class Deliverer:
# This method assumes the sender is list-admin if you don't give one.
def SendTextToUser(self, subject, text, recipient, sender=None,
- add_headers=[], raw=0):
+ add_headers=[]):
# repr(recipient) necessary for addresses containing "'" quotes!
if not sender:
sender = self.GetAdminEmail()
Utils.SendTextToUser(subject, text, recipient, sender,
- add_headers=add_headers, raw=raw)
+ add_headers=add_headers)
def DeliverToUser(self, msg, recipient):
# This method assumes the sender is the one given by the message.