Forráskód Böngészése

[rtve.es:alacarta] Fix for python 3.2

Sergey M․ 10 éve
szülő
commit
afe8b594be
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      youtube_dl/extractor/rtve.py

+ 1 - 1
youtube_dl/extractor/rtve.py

@@ -17,7 +17,7 @@ from ..utils import (
 
 
 
 
 def _decrypt_url(png):
 def _decrypt_url(png):
-    encrypted_data = base64.b64decode(png)
+    encrypted_data = base64.b64decode(png.encode('utf-8'))
     text_index = encrypted_data.find(b'tEXt')
     text_index = encrypted_data.find(b'tEXt')
     text_chunk = encrypted_data[text_index - 4:]
     text_chunk = encrypted_data[text_index - 4:]
     length = struct_unpack('!I', text_chunk[:4])[0]
     length = struct_unpack('!I', text_chunk[:4])[0]