summaryrefslogtreecommitdiff
path: root/Mailman/Deliverer.py
diff options
context:
space:
mode:
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!