aboutsummaryrefslogtreecommitdiffstats
path: root/Mailman/Handlers/Decorate.py
diff options
context:
space:
mode:
authorMark Sapiro <mark@msapiro.net>2008-11-30 20:30:43 -0800
committerMark Sapiro <mark@msapiro.net>2008-11-30 20:30:43 -0800
commitf579d5c290b80e00974e8c034f9d6dd697fcdfa6 (patch)
tree7ad0054577c7e457a94ecec5cd55d0003c2c2f08 /Mailman/Handlers/Decorate.py
parent0e6f7c1fc99eb7e35c23695bca2c17e757baf514 (diff)
downloadmailman2-f579d5c290b80e00974e8c034f9d6dd697fcdfa6.tar.gz
mailman2-f579d5c290b80e00974e8c034f9d6dd697fcdfa6.tar.xz
mailman2-f579d5c290b80e00974e8c034f9d6dd697fcdfa6.zip
Now that Python 2.4 is the minimum and we will use more recent installed
email packages, convert all the email message get_type() calls to get_content_type().
Diffstat (limited to 'Mailman/Handlers/Decorate.py')
-rw-r--r--Mailman/Handlers/Decorate.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Handlers/Decorate.py b/Mailman/Handlers/Decorate.py
index 81bf7d33..fa6c3a80 100644
--- a/Mailman/Handlers/Decorate.py
+++ b/Mailman/Handlers/Decorate.py
@@ -130,7 +130,7 @@ def process(mlist, msg, msgdata):
wrap = False
except (LookupError, UnicodeError):
pass
- elif msg.get_type() == 'multipart/mixed':
+ elif msg.get_content_type() == 'multipart/mixed':
# The next easiest thing to do is just prepend the header and append
# the footer as additional subparts
payload = msg.get_payload()