diff options
author | Brett Cannon <bcannon@gmail.com> | 2008-08-03 23:27:32 +0000 |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2008-08-03 23:27:32 +0000 |
commit | 1f571c6e602e7dc35d18cede0f70d34fd38e21ae (patch) | |
tree | 67b40a2e7268dd2cfefd22baa382591f8aee8b8f /Lib/email/quoprimime.py | |
parent | b2f49ff88d0d5e42ffc26c48b8759c1432a4e55c (diff) | |
download | cpython-git-1f571c6e602e7dc35d18cede0f70d34fd38e21ae.tar.gz |
Remove Barry's love of deprecated syntax to silence warnings in the email
package, when run under -3, about using <>.
Diffstat (limited to 'Lib/email/quoprimime.py')
-rw-r--r-- | Lib/email/quoprimime.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/email/quoprimime.py b/Lib/email/quoprimime.py index a5658dd3f7..389b276de6 100644 --- a/Lib/email/quoprimime.py +++ b/Lib/email/quoprimime.py @@ -287,7 +287,7 @@ def decode(encoded, eol=NL): n = len(line) while i < n: c = line[i] - if c <> '=': + if c != '=': decoded += c i += 1 # Otherwise, c == "=". Are we at the end of the line? If so, add |