summaryrefslogtreecommitdiff
path: root/Mailman/Deliverer.py
diff options
context:
space:
mode:
authorklm1998-05-01 14:22:44 +0000
committerklm1998-05-01 14:22:44 +0000
commit9ee2b1dbc357e6031d8f6bf22bed9aacf0d9c3c8 (patch)
tree66184092b84b51818677fc91507a43278b5deeb2 /Mailman/Deliverer.py
parenta135a5a08f7a54f5018204c33b9594aa01f75e3f (diff)
downloadmailman-9ee2b1dbc357e6031d8f6bf22bed9aacf0d9c3c8.tar.gz
mailman-9ee2b1dbc357e6031d8f6bf22bed9aacf0d9c3c8.tar.zst
mailman-9ee2b1dbc357e6031d8f6bf22bed9aacf0d9c3c8.zip
Diffstat (limited to 'Mailman/Deliverer.py')
-rw-r--r--Mailman/Deliverer.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Mailman/Deliverer.py b/Mailman/Deliverer.py
index 48feee339..cb5bf2a8d 100644
--- a/Mailman/Deliverer.py
+++ b/Mailman/Deliverer.py
@@ -1,6 +1,6 @@
"""Mixin class with message delivery routines."""
-__version__ = "$Revision: 475 $"
+__version__ = "$Revision: 498 $"
import string, os, sys, tempfile
@@ -96,8 +96,8 @@ class Deliverer:
def QuotePeriods(self, text):
return string.join(string.split(text, '\n.\n'), '\n .\n')
- def DeliverToList(self, msg, recipients, header, footer, remove_to=0,
- tmpfile_prefix = ""):
+ def DeliverToList(self, msg, recipients,
+ header="", footer="", remove_to=0, tmpfile_prefix = ""):
if not(len(recipients)):
return
# repr(recipient) necessary for addresses containing "'" quotes!