diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2009-07-12 16:43:19 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2009-07-12 16:43:19 (GMT) |
commit | 1c25de69ee63c80e6a6640a941b44f623d271a0e (patch) | |
tree | bc9095cadde93dbddf4a8020ab7d37e7007d3d66 /Lib/email/header.py | |
parent | c9e6cecdce65a14803dbf539b5bf776edcced562 (diff) | |
download | cpython-1c25de69ee63c80e6a6640a941b44f623d271a0e.zip cpython-1c25de69ee63c80e6a6640a941b44f623d271a0e.tar.gz cpython-1c25de69ee63c80e6a6640a941b44f623d271a0e.tar.bz2 |
Merged revisions 73952 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
(Only docstrings were modified, won't backport to 3.1)
........
r73952 | amaury.forgeotdarc | 2009-07-11 16:33:51 +0200 (sam., 11 juil. 2009) | 4 lines
#2622 Import errors in email.message, from a py2app standalone application.
Patch by Mads Kiilerich, Reviewed by Barry Warsaw.
........
Diffstat (limited to 'Lib/email/header.py')
-rw-r--r-- | Lib/email/header.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/email/header.py b/Lib/email/header.py index 3215a80..c924d3a 100644 --- a/Lib/email/header.py +++ b/Lib/email/header.py @@ -61,7 +61,7 @@ def decode_header(header): otherwise a lower-case string containing the name of the character set specified in the encoded string. - An email.Errors.HeaderParseError may be raised when certain decoding error + An email.errors.HeaderParseError may be raised when certain decoding error occurs (e.g. a base64 decoding exception). """ # If no encoding, just return the header with no charset. |