bpo-40121: Fix exception type in test (GH-19267)
This commit is contained in:
parent
6eb9619c88
commit
3ef4a7e5a7
|
@ -343,7 +343,7 @@ def test_socket():
|
|||
try:
|
||||
# Don't care if this fails, we just want the audit message
|
||||
sock.bind(('127.0.0.1', 8080))
|
||||
except error:
|
||||
except Exception:
|
||||
pass
|
||||
finally:
|
||||
sock.close()
|
||||
|
|
Loading…
Reference in New Issue