mirror of
https://source.netsyms.com/Mirrors/youtube-dl
synced 2024-11-03 03:40:20 +00:00
utils.py: Workaround TypeError with Python 2.7.13 in Windows
Fixes #11540 Tested with Windows Python 2.7.12 and 2.7.13.
This commit is contained in:
parent
9b92a5917b
commit
2f49bcd690
@ -1684,6 +1684,11 @@ def setproctitle(title):
|
|||||||
libc = ctypes.cdll.LoadLibrary('libc.so.6')
|
libc = ctypes.cdll.LoadLibrary('libc.so.6')
|
||||||
except OSError:
|
except OSError:
|
||||||
return
|
return
|
||||||
|
except TypeError:
|
||||||
|
# LoadLibrary in Windows Python 2.7.13 only expects
|
||||||
|
# a bytestring, but since unicode_literals turns
|
||||||
|
# every string into a unicode string, it fails.
|
||||||
|
return
|
||||||
title_bytes = title.encode('utf-8')
|
title_bytes = title.encode('utf-8')
|
||||||
buf = ctypes.create_string_buffer(len(title_bytes))
|
buf = ctypes.create_string_buffer(len(title_bytes))
|
||||||
buf.value = title_bytes
|
buf.value = title_bytes
|
||||||
|
Loading…
Reference in New Issue
Block a user