Commit b81fd644 authored by Giampaolo Rodola's avatar Giampaolo Rodola

Issue 16646 (ftplib): deliberately use intermediate variable after catching exception

parent b277dee3
...@@ -291,7 +291,8 @@ class FTP: ...@@ -291,7 +291,8 @@ class FTP:
try: try:
sock = socket.socket(af, socktype, proto) sock = socket.socket(af, socktype, proto)
sock.bind(sa) sock.bind(sa)
except socket.error as err: except socket.error as _:
err = _
if sock: if sock:
sock.close() sock.close()
sock = None sock = None
......
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