From c1784d3979900bfde8e4eb2e820917511bedf10e Mon Sep 17 00:00:00 2001 From: deezerdl Date: Fri, 26 May 2017 18:34:10 +0000 Subject: [PATCH] and making it work in 3.x again as well. --- youtube_dl/blowfish.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/blowfish.py b/youtube_dl/blowfish.py index 24c0125f0..0ef97681a 100644 --- a/youtube_dl/blowfish.py +++ b/youtube_dl/blowfish.py @@ -1,6 +1,6 @@ from __future__ import unicode_literals -from compat import compat_struct_unpack, compat_struct_pack +from .compat import compat_struct_unpack, compat_struct_pack # Blowfish implementation, translated from original C code by Bruce Schneier.