[util] Move compatibility functions out of util
[youtube-dl] / youtube_dl / extractor / common.py
index 7e4113213c8a850f42b58e187e69870d81102d43..9e1d62c2b908f0c8ac826a5d16fba10c4645b8b2 100644 (file)
@@ -12,13 +12,14 @@ import sys
 import time
 import xml.etree.ElementTree
 
-from ..utils import (
+from ..compat import (
     compat_http_client,
     compat_urllib_error,
     compat_urllib_parse_urlparse,
     compat_urlparse,
     compat_str,
-
+)
+from ..utils import (
     clean_html,
     compiled_regex_type,
     ExtractorError,