You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Should line 147 read: except HTTPException as e: print(str(e))
instead of except HTTPException, e: print(str(e))
which gives me an error for python3.5.2
--edit--
I also needed to make the import explicit with python3.5.2 for line 5 from http:client import HTTPConnection, HTTPSConnection, HTTPException
The text was updated successfully, but these errors were encountered:
Should line 147 read:
except HTTPException as e: print(str(e))
instead of
except HTTPException, e: print(str(e))
which gives me an error for python3.5.2
--edit--
I also needed to make the import explicit with python3.5.2 for line 5
from http:client import HTTPConnection, HTTPSConnection, HTTPException
The text was updated successfully, but these errors were encountered: