summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Widman <jeff@jeffwidman.com>2017-12-12 10:50:58 -0800
committerGitHub <noreply@github.com>2017-12-12 10:50:58 -0800
commita699f6a347591076b5c427fc245e5ed5f5ffdd49 (patch)
tree051fba5d5b5435921cf02090c02b0884705b99b7
parent68a416ad151839ff7a070ba809d0ca3d734ace26 (diff)
downloadkafka-python-a699f6a347591076b5c427fc245e5ed5f5ffdd49.tar.gz
Use non-deprecated exception handling
Pulls in the fix upstream from https://github.com/mhils/backports.socketpair/pull/1
-rw-r--r--kafka/vendor/socketpair.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/kafka/vendor/socketpair.py b/kafka/vendor/socketpair.py
index 0f196c6..b55e629 100644
--- a/kafka/vendor/socketpair.py
+++ b/kafka/vendor/socketpair.py
@@ -48,7 +48,7 @@ if not hasattr(socket, "socketpair"):
raise
csock.setblocking(True)
ssock, _ = lsock.accept()
- except:
+ except Exception:
csock.close()
raise
finally: