youtube-dl

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

commit 878563c847fa5248eedbd44187536dec04643eaf
parent 06947add03b6b619292812a771993d3365b0e7e5
Author: Sergey M․ <dstftw@gmail.com>
Date:   Fri, 22 May 2015 00:06:10 +0600

[aes] Fix for python 3.2

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

diff --git a/youtube_dl/aes.py b/youtube_dl/aes.py @@ -152,7 +152,7 @@ def aes_decrypt_text(data, password, key_size_bytes): """ NONCE_LENGTH_BYTES = 8 - data = bytes_to_intlist(base64.b64decode(data)) + data = bytes_to_intlist(base64.b64decode(data.encode('utf-8'))) password = bytes_to_intlist(password.encode('utf-8')) key = password[:key_size_bytes] + [0] * (key_size_bytes - len(password))