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.