1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-09-16 07:42:24 +02:00

Don't forget trailing '%'

This commit is contained in:
fnord 2015-07-17 09:45:49 -05:00
parent 9fefc88656
commit 593b77064c

View File

@ -98,6 +98,9 @@ def compat_urllib_parse_unquote_to_bytes(string):
append = res.append
for item in bits[1:]:
if item == '':
append(b'%')
continue
try:
append(item[:2].decode('hex'))
append(item[2:])