diff options
author | R David Murray <rdmurray@bitdance.com> | 2011-03-16 19:52:22 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2011-03-16 19:52:22 (GMT) |
commit | 6d94bd470e3f4aa1dc7295b034553509ace2c654 (patch) | |
tree | 48b4d853d3e0755d0f6e3013a2b50603956807da /Lib/email/encoders.py | |
parent | d3b7a55f543bf1c3ea6bcf10dd03b0919822f993 (diff) | |
download | cpython-6d94bd470e3f4aa1dc7295b034553509ace2c654.zip cpython-6d94bd470e3f4aa1dc7295b034553509ace2c654.tar.gz cpython-6d94bd470e3f4aa1dc7295b034553509ace2c654.tar.bz2 |
#9298: restore proper folding of base64 encoded bodies.
Patch by Yves Dorfsman.
Diffstat (limited to 'Lib/email/encoders.py')
-rw-r--r-- | Lib/email/encoders.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ __all__ = [ ] -from base64 import b64encode as _bencode +from base64 import encodebytes as _bencode from quopri import encodestring as _encodestring |