commit | 6d94bd470e3f4aa1dc7295b034553509ace2c654 | [log] [tgz] |
---|---|---|
author | R David Murray <rdmurray@bitdance.com> | Wed Mar 16 15:52:22 2011 -0400 |
committer | R David Murray <rdmurray@bitdance.com> | Wed Mar 16 15:52:22 2011 -0400 |
tree | 48b4d853d3e0755d0f6e3013a2b50603956807da | |
parent | d3b7a55f543bf1c3ea6bcf10dd03b0919822f993 [diff] [blame] |
#9298: restore proper folding of base64 encoded bodies. Patch by Yves Dorfsman.
diff --git a/Lib/email/encoders.py b/Lib/email/encoders.py index 0ea441d..dfaac58 100644 --- a/Lib/email/encoders.py +++ b/Lib/email/encoders.py
@@ -12,7 +12,7 @@ ] -from base64 import b64encode as _bencode +from base64 import encodebytes as _bencode from quopri import encodestring as _encodestring