youtube-dl

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

commit 42f7d2f588f5d0276ddb89306d5371e9fdbe91a0
parent 39f0a2a6b71c5d3cb2e2f8ef1bc3eeeaa6a96971
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Sun,  2 Nov 2014 11:46:12 +0100

[test_download] Fix import

Diffstat:
Mtest/test_download.py | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/test/test_download.py b/test/test_download.py @@ -23,10 +23,12 @@ import json import socket import youtube_dl.YoutubeDL -from youtube_dl.utils import ( +from youtube_dl.compat import ( compat_http_client, compat_urllib_error, compat_HTTPError, +) +from youtube_dl.utils import ( DownloadError, ExtractorError, format_bytes,