about summary refs log tree commit diff
path: root/test/test_download.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-11-02 11:46:12 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-11-02 11:46:12 +0100
commit42f7d2f588f5d0276ddb89306d5371e9fdbe91a0 (patch)
tree03b811c62a9f8902fc5384e017ce39446699c787 /test/test_download.py
parent39f0a2a6b71c5d3cb2e2f8ef1bc3eeeaa6a96971 (diff)
downloadyoutube-dl-42f7d2f588f5d0276ddb89306d5371e9fdbe91a0.tar.gz
youtube-dl-42f7d2f588f5d0276ddb89306d5371e9fdbe91a0.tar.xz
youtube-dl-42f7d2f588f5d0276ddb89306d5371e9fdbe91a0.zip
[test_download] Fix import
Diffstat (limited to 'test/test_download.py')
-rw-r--r--test/test_download.py4
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,