A Python script of mine is failing with:
Traceback (most recent call last): File \"./inspect_sheet.py\", line 21, in main() File \"./i
Turned out the problem was with my installation of pyOpenSSL, pyOpenSSL-0.15.1 .
I did:
pip uninstall pyopenssl
and then
pip install pyopenssl
...and my Python script worked again!