summaryrefslogtreecommitdiff
path: root/Mailman/Message.py
diff options
context:
space:
mode:
Diffstat (limited to 'Mailman/Message.py')
-rw-r--r--Mailman/Message.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Mailman/Message.py b/Mailman/Message.py
index 3157e59bb..0f94de7c5 100644
--- a/Mailman/Message.py
+++ b/Mailman/Message.py
@@ -1,6 +1,6 @@
"""Embody incoming and outgoing messages as objects."""
-__version__ = "$Revision: 399 $"
+__version__ = "$Revision: 419 $"
import sys
@@ -12,6 +12,7 @@ def AddBackNewline(str):
return str + '\n'
+# XXX klm - use the standard lib StringIO module instead of FakeFile.
# If we're trying to create a message object from text, we need to pass
# a file object to rfc822.Message to get it to do its magic. Well,
# to avoid writing text out to a file, and having it read back in,