made flake8 happy

This commit is contained in:
deezerdl 2017-05-24 16:08:21 +00:00 committed by GitHub
parent 971a137773
commit f1f838f8bb

View File

@ -5,6 +5,7 @@ from .common import FileDownloader
from ..utils import sanitized_Request
def blowfishDecrypt(data, key):
""" CBC decrypt data with key """
c = Blowfish.new(key, Blowfish.MODE_CBC, binascii.a2b_hex("0001020304050607"))
@ -37,4 +38,3 @@ class DeezerDownloader(FileDownloader):
with open(filename, "wb") as fo:
decryptfile(data, info_dict['key'], fo)