aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/gamespot.py
diff options
context:
space:
mode:
Diffstat (limited to 'youtube_dl/extractor/gamespot.py')
-rw-r--r--youtube_dl/extractor/gamespot.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/youtube_dl/extractor/gamespot.py b/youtube_dl/extractor/gamespot.py
index d570e3f..47373e2 100644
--- a/youtube_dl/extractor/gamespot.py
+++ b/youtube_dl/extractor/gamespot.py
@@ -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,
)