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

This commit is contained in:
Barry Warsaw 2002-03-25 04:00:38 +00:00
parent 714d7268d5
commit 4b186aff48
1 changed files with 1 additions and 1 deletions

View File

@ -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 = {}