diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-11-02 11:46:12 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-11-02 11:46:12 +0100 |
commit | 42f7d2f588f5d0276ddb89306d5371e9fdbe91a0 (patch) | |
tree | 03b811c62a9f8902fc5384e017ce39446699c787 /test/test_download.py | |
parent | 39f0a2a6b71c5d3cb2e2f8ef1bc3eeeaa6a96971 (diff) |
[test_download] Fix import
Diffstat (limited to 'test/test_download.py')
-rw-r--r-- | test/test_download.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/test_download.py b/test/test_download.py index 75e0bb289..88ce29871 100644 --- 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, |