diff options
| author | bwarsaw | 2001-05-01 06:06:24 +0000 |
|---|---|---|
| committer | bwarsaw | 2001-05-01 06:06:24 +0000 |
| commit | b400fab9c9a028dd67f082b4b1bfdab18b620955 (patch) | |
| tree | 44bc7cebe1618751fd23d12a19b18de441e5d300 /Mailman/Message.py | |
| parent | b7e2ed85419ab7c357895b7b0b46e91b36dfd6bc (diff) | |
| download | mailman-b400fab9c9a028dd67f082b4b1bfdab18b620955.tar.gz mailman-b400fab9c9a028dd67f082b4b1bfdab18b620955.tar.zst mailman-b400fab9c9a028dd67f082b4b1bfdab18b620955.zip | |
mimelib's ReprMixin class and module was renamed to StringableMixin in
the 0.3 release. This means you must download and install the 0.3
version of mimelib to work with the current CVS snapshot!
Diffstat (limited to 'Mailman/Message.py')
| -rw-r--r-- | Mailman/Message.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Mailman/Message.py b/Mailman/Message.py index 439519c4d..45af67184 100644 --- a/Mailman/Message.py +++ b/Mailman/Message.py @@ -1,4 +1,4 @@ -# Copyright (C) 1998,1999,2000 by the Free Software Foundation, Inc. +# Copyright (C) 1998,1999,2000,2001 by the Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -23,7 +23,7 @@ which is more convenient for use inside Mailman. from types import ListType import mimelib.Message -import mimelib.ReprMixin +from mimelib.StringableMixin import StringableMixin from mimelib.address import getaddresses from Mailman import mm_cfg @@ -32,7 +32,7 @@ COMMASPACE = ', ' -class Message(mimelib.Message.Message, mimelib.ReprMixin.ReprMixin): +class Message(mimelib.Message.Message, StringableMixin): def get_sender(self, use_envelope=None, preserve_case=0): """Return the address considered to be the author of the email. |
