Commit 4b186aff authored by Barry Warsaw's avatar Barry Warsaw

SMTP.__init__(): Fixed minor typo in docstring.

parent 714d7268
...@@ -228,7 +228,7 @@ class SMTP: ...@@ -228,7 +228,7 @@ class SMTP:
By default, smtplib.SMTP_PORT is used. An SMTPConnectError is raised By default, smtplib.SMTP_PORT is used. An SMTPConnectError is raised
if the specified `host' doesn't respond correctly. If specified, if the specified `host' doesn't respond correctly. If specified,
`local_hostname` is used as the FQDN of the local host. By default, `local_hostname` is used as the FQDN of the local host. By default,
the local hostname is found using gethostbyname(). the local hostname is found using socket.getfqdn().
""" """
self.esmtp_features = {} self.esmtp_features = {}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment