mirror of https://github.com/python/cpython
Issue 16646 (ftplib): deliberately use intermediate variable after catching exception
This commit is contained in:
parent
b6693c4604
commit
57f3487994
|
@ -291,7 +291,8 @@ class FTP:
|
|||
try:
|
||||
sock = socket.socket(af, socktype, proto)
|
||||
sock.bind(sa)
|
||||
except socket.error as err:
|
||||
except socket.error as _:
|
||||
err = _
|
||||
if sock:
|
||||
sock.close()
|
||||
sock = None
|
||||
|
|
Loading…
Reference in New Issue