Github user jeking3 commented on a diff in the pull request:
https://github.com/apache/thrift/pull/1399#discussion_r147157619
--- Diff: lib/py/setup.py ---
@@ -22,7 +22,7 @@
import sys
try:
from setuptools import setup, Extension
-except:
+except Exception:
--- End diff --
I have to resubmit anyway to kick off another PR build, but I'd like to
leave it as I changed it for now, and it can be improved later through a
subsequent PR. I was just trying to eliminate those pesky E722 errors in
flake8. There are a lot more issues in generated code that flake8 pulls out.
---