This commit is contained in:
Miroslav Stampar
2017-12-28 13:25:26 +01:00
parent 78ac42c168
commit b6584c8043
3 changed files with 4 additions and 4 deletions

View File

@@ -3849,7 +3849,7 @@ def asciifyUrl(url, forceQuote=False):
# Triggers on non-ascii characters - another option would be:
# urllib.quote(s.replace('%', '')) != s.replace('%', '')
# which would trigger on all %-characters, e.g. "&".
if s.encode("ascii", "replace") != s or forceQuote:
if getUnicode(s).encode("ascii", "replace") != s or forceQuote:
return urllib.quote(s.encode(UNICODE_ENCODING), safe=safe)
return s