[Python-checkins] bpo-40121: Fix exception type in test (GH-19267)

Steve Dower webhook-mailer at python.org
Wed Apr 1 04:38:50 EDT 2020


https://github.com/python/cpython/commit/3ef4a7e5a7c29e17d5152d1fa6ceeb1fee269699
commit: 3ef4a7e5a7c29e17d5152d1fa6ceeb1fee269699
branch: master
author: Steve Dower <steve.dower at python.org>
committer: GitHub <noreply at github.com>
date: 2020-04-01T09:38:26+01:00
summary:

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

files:
M Lib/test/audit-tests.py

diff --git a/Lib/test/audit-tests.py b/Lib/test/audit-tests.py
index dda52a5a518f6..b90c4b8f75794 100644
--- a/Lib/test/audit-tests.py
+++ b/Lib/test/audit-tests.py
@@ -343,7 +343,7 @@ def hook(event, args):
     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()



More information about the Python-checkins mailing list