diff options
author | Zackery Spytz <zspytz@gmail.com> | 2019-08-20 17:52:25 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-08-20 17:52:25 (GMT) |
commit | 46a7564578f208df1e0c54fc0520d3b7ca32c981 (patch) | |
tree | 49f7597afa53615cda37df0ab9b9651b336d98c3 /Lib/smtplib.py | |
parent | 9e66aba99925eebacfe137d9deb0ef1fdbc2d5db (diff) | |
download | cpython-46a7564578f208df1e0c54fc0520d3b7ca32c981.zip cpython-46a7564578f208df1e0c54fc0520d3b7ca32c981.tar.gz cpython-46a7564578f208df1e0c54fc0520d3b7ca32c981.tar.bz2 |
bpo-32793: Fix a duplicate debug message in smtplib (GH-15341)
_get_socket() already prints a debug message for the host and port.
https://bugs.python.org/issue32793
Automerge-Triggered-By: @maxking
Diffstat (limited to 'Lib/smtplib.py')
-rwxr-xr-x | Lib/smtplib.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/smtplib.py b/Lib/smtplib.py index a634f7a..43a00d9 100755 --- a/Lib/smtplib.py +++ b/Lib/smtplib.py @@ -333,8 +333,6 @@ class SMTP: raise OSError("nonnumeric port") if not port: port = self.default_port - if self.debuglevel > 0: - self._print_debug('connect:', (host, port)) sys.audit("smtplib.connect", self, host, port) self.sock = self._get_socket(host, port, self.timeout) self.file = None |