youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit afe8b594be53161f68189e15a65b4e9c6eba0b35
parent 878563c847fa5248eedbd44187536dec04643eaf
Author: Sergey M․ <dstftw@gmail.com>
Date:   Fri, 22 May 2015 00:09:15 +0600

[rtve.es:alacarta] Fix for python 3.2

Diffstat:
Myoutube_dl/extractor/rtve.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/rtve.py b/youtube_dl/extractor/rtve.py @@ -17,7 +17,7 @@ from ..utils import ( 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_chunk = encrypted_data[text_index - 4:] length = struct_unpack('!I', text_chunk[:4])[0]