Fix imports and general cleanup
[youtube-dl] / youtube_dl / extractor / gamespot.py
index d570e3f6a85ca399d81328e3afedee4f98158e5f..47373e21540030d4c9a19dbfc1c5943f468fea4f 100644 (file)
@@ -4,9 +4,11 @@ import re
 import json
 
 from .common import InfoExtractor
-from ..utils import (
+from ..compat import (
     compat_urllib_parse,
     compat_urlparse,
+)
+from ..utils import (
     unescapeHTML,
 )