diff options
author | Georg Brandl <georg@python.org> | 2008-06-12 22:23:59 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-06-12 22:23:59 (GMT) |
commit | 9f0f960d4ce48062dcb286903721fa89d6037159 (patch) | |
tree | 4640c5dd2f0ffc54affa131fe6b48cb70d480b71 /Lib/smtplib.py | |
parent | a0c0a4a2616e83084052a34c9806b3308f5799db (diff) | |
download | cpython-9f0f960d4ce48062dcb286903721fa89d6037159.zip cpython-9f0f960d4ce48062dcb286903721fa89d6037159.tar.gz cpython-9f0f960d4ce48062dcb286903721fa89d6037159.tar.bz2 |
Remove traces of rfc822.
Diffstat (limited to 'Lib/smtplib.py')
-rwxr-xr-x | Lib/smtplib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/smtplib.py b/Lib/smtplib.py index e67f0d6..d59e6b1 100755 --- a/Lib/smtplib.py +++ b/Lib/smtplib.py @@ -131,7 +131,7 @@ class SMTPAuthenticationError(SMTPResponseException): def quoteaddr(addr): """Quote a subset of the email addresses defined by RFC 821. - Should be able to handle anything rfc822.parseaddr can handle. + Should be able to handle anything email.utils.parseaddr can handle. """ m = (None, None) try: |