fix socket.error problem
This commit is contained in:
parent
79c3dfb86f
commit
00b2ce3e2e
2 changed files with 2 additions and 2 deletions
2
local.py
2
local.py
|
@ -54,7 +54,7 @@ def socket_create_connection(address, timeout=socket._GLOBAL_DEFAULT_TIMEOUT,
|
|||
sock.connect(sa)
|
||||
return sock
|
||||
|
||||
except error as _:
|
||||
except socket.error as _:
|
||||
err = _
|
||||
if sock is not None:
|
||||
sock.close()
|
||||
|
|
|
@ -57,7 +57,7 @@ def socket_create_connection(address, timeout=socket._GLOBAL_DEFAULT_TIMEOUT,
|
|||
sock.connect(sa)
|
||||
return sock
|
||||
|
||||
except error as _:
|
||||
except socket.error as _:
|
||||
err = _
|
||||
if sock is not None:
|
||||
sock.close()
|
||||
|
|
Loading…
Reference in a new issue