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

This commit is contained in:
Giampaolo Rodola' 2012-12-17 20:46:16 +01:00
parent b6693c4604
commit 57f3487994
1 changed files with 2 additions and 1 deletions

View File

@ -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