bpo-40121: Fix exception type in test (GH-19267)

This commit is contained in:
Steve Dower 2020-04-01 09:38:26 +01:00 committed by GitHub
parent 6eb9619c88
commit 3ef4a7e5a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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