Fix imports and general cleanup
[youtube-dl] / youtube_dl / downloader / hls.py
index ad26cfa4085bbb028c7252aa9db2a8de3f7bd1e4..5bb0f3cfd19632f126d4f7d7b0df407b608778fc 100644 (file)
@@ -6,9 +6,11 @@ import subprocess
 
 from ..postprocessor.ffmpeg import FFmpegPostProcessor
 from .common import FileDownloader
-from ..utils import (
+from ..compat import (
     compat_urlparse,
     compat_urllib_request,
+)
+from ..utils import (
     check_executable,
     encodeFilename,
 )