-
Notifications
You must be signed in to change notification settings - Fork 75
Open
Description
There's an unsupported syntax in HttpLibrary init.py
except ValueError, e:
is not supported in Python 3.6 (maybe other versions as well, not sure).
Updating to
except ValueError as e:
works for Python 2.7 and above (maybe for lower versions of Python as well, not sure).
Also:
from urllib import urlparse
becomes
from urllib.parse import urlparse
and it's failing on importing livetest.
Tried from HttpLibrary import livetest but that's not working.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels