From 4b186aff486400c3a7412ee552587f5a30be2381 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Mon, 25 Mar 2002 04:00:38 +0000 Subject: [PATCH] SMTP.__init__(): Fixed minor typo in docstring. --- Lib/smtplib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/smtplib.py b/Lib/smtplib.py index a6224e0c421..0695840df78 100755 --- a/Lib/smtplib.py +++ b/Lib/smtplib.py @@ -228,7 +228,7 @@ class SMTP: By default, smtplib.SMTP_PORT is used. An SMTPConnectError is raised if the specified `host' doesn't respond correctly. If specified, `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 = {}