I am using python 3.5, error when execute p4a on toolchain.py
error :
on import expression 'from urlparse import urlparse'
I fixed it with adding try catch when importing it, for compatibility reason:
try:
from urlparse import urlparse
except ImportError:
from urllib.parse import urlparse
Regards,