Comment 3 for bug 1887102

Revision history for this message
Beorn Morder (beornmorder) wrote :

I got this from the python doc or [urllib.parse](https://docs.python.org/3/library/urllib.parse.html)

Characters in the netloc attribute that decompose under NFKC normalization (as used by the IDNA encoding) into any of /, ?, #, @, or : will raise a ValueError. If the URL is decomposed before parsing, no error will be raised.

Not sure what that means or how that's effecting line 121 in namegenerator.py...

result = os.path.join(folder, urllib.parse.quote(basefolder), urllib.parse.quote(result))

I'll print the result variable from namegenerator.py each step of the process - and see what text is being stored in it.