Browse Source

Fix execution under Python 3

Philipp Hagemeister 11 years ago
parent
commit
e64eaaa97d
1 changed files with 2 additions and 1 deletions
  1. 2 1
      youtube_dl/utils.py

+ 2 - 1
youtube_dl/utils.py

@@ -1066,13 +1066,14 @@ def fix_xml_all_ampersand(xml_str):
 
 
 
 
 def setproctitle(title):
 def setproctitle(title):
+    assert isinstance(title, type(u''))
     try:
     try:
         libc = ctypes.cdll.LoadLibrary("libc.so.6")
         libc = ctypes.cdll.LoadLibrary("libc.so.6")
     except OSError:
     except OSError:
         return
         return
     title = title
     title = title
     buf = ctypes.create_string_buffer(len(title) + 1)
     buf = ctypes.create_string_buffer(len(title) + 1)
-    buf.value = title
+    buf.value = title.encode('utf-8')
     try:
     try:
         libc.prctl(15, ctypes.byref(buf), 0, 0, 0)
         libc.prctl(15, ctypes.byref(buf), 0, 0, 0)
     except AttributeError:
     except AttributeError: