diff options
author | Barry Warsaw <barry@list.org> | 2008-12-01 23:25:33 -0500 |
---|---|---|
committer | Barry Warsaw <barry@list.org> | 2008-12-01 23:25:33 -0500 |
commit | 2da8819928e6b010eb6c9d34c71a4f9f0287af9b (patch) | |
tree | 7ad0054577c7e457a94ecec5cd55d0003c2c2f08 /Mailman/Bouncers/Netscape.py | |
parent | 0e6f7c1fc99eb7e35c23695bca2c17e757baf514 (diff) | |
parent | f579d5c290b80e00974e8c034f9d6dd697fcdfa6 (diff) | |
download | mailman2-2da8819928e6b010eb6c9d34c71a4f9f0287af9b.tar.gz mailman2-2da8819928e6b010eb6c9d34c71a4f9f0287af9b.tar.xz mailman2-2da8819928e6b010eb6c9d34c71a4f9f0287af9b.zip |
Merge Mark's changes to complete the Python 2.6 compatibility.
Diffstat (limited to '')
-rw-r--r-- | Mailman/Bouncers/Netscape.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/Bouncers/Netscape.py b/Mailman/Bouncers/Netscape.py index f5974602..8c21f629 100644 --- a/Mailman/Bouncers/Netscape.py +++ b/Mailman/Bouncers/Netscape.py @@ -1,4 +1,4 @@ -# Copyright (C) 1998,1999,2000,2001,2002 by the Free Software Foundation, Inc. +# Copyright (C) 1998-2008 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 @@ -61,7 +61,7 @@ def process(msg): leaves = [] flatten(msg, leaves) for i, subpart in zip(range(len(leaves)-1), leaves): - if subpart.get_type() == 'text/plain': + if subpart.get_content_type() == 'text/plain': plainmsg = subpart break if not plainmsg: |