------------------------------------------------------------
revno: 6574
committer: Mark Sapiro <[EMAIL PROTECTED]>
branch nick: 3.0
timestamp: Fri 2007-11-09 12:29:46 -0800
message:
  Fixed Mailman/queue/command.py to decode a quoted-printable or base64
  encoded message part.
modified:
  Mailman/queue/command.py

=== modified file 'Mailman/queue/command.py'
--- a/Mailman/queue/command.py  2007-10-11 03:22:03 +0000
+++ b/Mailman/queue/command.py  2007-11-09 20:29:46 +0000
@@ -83,7 +83,7 @@
         if part is None:
             # E.g the outer Content-Type: was text/html
             return
-        body = part.get_payload()
+        body = part.get_payload(decode=True)
         # text/plain parts better have string payloads
         assert isinstance(body, basestring)
         lines = body.splitlines()



--

https://code.launchpad.net/~mailman-coders/mailman/3.0

You are receiving this branch notification because you are subscribed to it.
To unsubscribe from this branch go to 
https://code.launchpad.net/~mailman-coders/mailman/3.0/+subscription/mailman-checkins.
_______________________________________________
Mailman-checkins mailing list
[email protected]
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org

Reply via email to