diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-12-19 20:47:05 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-12-19 20:47:05 (GMT) |
commit | bd644608bde16499ebfe8208bd26b5e60887ccf7 (patch) | |
tree | aa056eb3870e4fb0ea2f3696f66a1f5ec7b2a72f | |
parent | 4bb142b1b712d8e67c81687d396685fba55abf77 (diff) | |
download | cpython-bd644608bde16499ebfe8208bd26b5e60887ccf7.zip cpython-bd644608bde16499ebfe8208bd26b5e60887ccf7.tar.gz cpython-bd644608bde16499ebfe8208bd26b5e60887ccf7.tar.bz2 |
revert comment wording (#16714)
-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 b46d21d..2cf870f 100644 --- a/Lib/email/header.py +++ b/Lib/email/header.py @@ -103,7 +103,7 @@ def decode_header(header): dec = email.base64mime.decode(encoded) except binascii.Error: # Turn this into a higher level exception. BAW: Right - # now we raise the lower level exception away but + # now we throw the lower level exception away but # when/if we get exception chaining, we'll preserve it. raise HeaderParseError if dec is None: |