diff options
| author | tkikuchi | 2006-01-29 05:13:57 +0000 |
|---|---|---|
| committer | tkikuchi | 2006-01-29 05:13:57 +0000 |
| commit | 753faf110f809060ed6de61f090526fafd09b756 (patch) | |
| tree | ef0cade2d1918bd164b9c90e3fb62c43c5658d89 /Mailman/Archiver/HyperArch.py | |
| parent | 383d8270072783e81116fe32498c4542cb974b55 (diff) | |
| download | mailman-753faf110f809060ed6de61f090526fafd09b756.tar.gz mailman-753faf110f809060ed6de61f090526fafd09b756.tar.zst mailman-753faf110f809060ed6de61f090526fafd09b756.zip | |
Diffstat (limited to 'Mailman/Archiver/HyperArch.py')
| -rw-r--r-- | Mailman/Archiver/HyperArch.py | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/Mailman/Archiver/HyperArch.py b/Mailman/Archiver/HyperArch.py index bd3802bcc..0245f21b4 100644 --- a/Mailman/Archiver/HyperArch.py +++ b/Mailman/Archiver/HyperArch.py @@ -1,4 +1,4 @@ -# Copyright (C) 1998-2005 by the Free Software Foundation, Inc. +# Copyright (C) 1998-2006 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 @@ -304,12 +304,7 @@ class Article(pipermail.Article): if charset[0]=="'" and charset[-1]=="'": charset = charset[1:-1] try: - # Check Scrubber-munged payload - if message.get('x-mailman-scrubbed'): - decode = False - else: - decode = True - body = message.get_payload(decode=decode) + body = message.get_payload(decode=True) except binascii.Error: body = None if body and charset != Utils.GetCharSet(self._lang): |
