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