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
make test fails on python3.5 on ubuntu 16.04 with error ImportError: No module named 'urlparse'
I could able to fix the issue by changing import statement inside disco/util.py file from from urlparse import urlparse to from urllib.parse import urlparse.
It looks that in python3.5 from urlparse name has been changed to urllib.parse .
Please let me know if fix is already available.
Thanks,
Snehlata Mohite.
The text was updated successfully, but these errors were encountered:
Hi All,
make test fails on python3.5 on ubuntu 16.04 with error ImportError: No module named 'urlparse'
I could able to fix the issue by changing import statement inside disco/util.py file from from urlparse import urlparse to from urllib.parse import urlparse.
It looks that in python3.5 from urlparse name has been changed to urllib.parse .
Please let me know if fix is already available.
Thanks,
Snehlata Mohite.
The text was updated successfully, but these errors were encountered: