Skip to content

unquote is now in urllib.parse | python3 support

when I try to run burp-ui using python3.4 I have this error:

from urllib import unquote
ImportError: cannot import name 'unquote'

I replaced from urllib import unquote by from urllib.parse import unquote in several files and it works!

The urllib version shoud be tested to make the right import.

Thanks!