adrienverge / PhotoCollage

Graphical tool to make photo collage posters
GNU General Public License v2.0
432 stars 73 forks source link

gtkgui: Import urlib.parse instead of urllib #112

Closed adrienverge closed 4 months ago

adrienverge commented 4 months ago

Because:

>>> import urllib
>>> urllib.parse.unquote('file://test')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: module 'urllib' has no attribute 'parse'
>>> import urllib.parse
>>> urllib.parse.unquote('file://test')
'file://test'

Closes https://github.com/adrienverge/PhotoCollage/issues/109