Fix imports and general cleanup
[youtube-dl] / youtube_dl / extractor / moevideo.py
index 2ff79b9b88590e87f1aecf9fdfd32f242bd98420..184f9c2c9e216a47b635680ba928f1c3c403619d 100644 (file)
@@ -5,10 +5,12 @@ import json
 import re
 
 from .common import InfoExtractor
-from ..utils import (
-    ExtractorError,
+from ..compat import (
     compat_urllib_parse,
     compat_urllib_request,
+)
+from ..utils import (
+    ExtractorError,
     int_or_none,
 )