summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-07-17 23:38:30 +0600
committerSergey M․ <dstftw@gmail.com>2015-07-17 23:38:30 +0600
commit1f80e360fce9fc057847379ec06d0e635f697198 (patch)
tree62f48fad764cc0640883842d14da36bd7f8e698b
parentd7011316d0bce88796a6d33e895fdafa231fd8ec (diff)
downloadyoutube-dl-1f80e360fce9fc057847379ec06d0e635f697198.tar.gz
youtube-dl-1f80e360fce9fc057847379ec06d0e635f697198.tar.xz
youtube-dl-1f80e360fce9fc057847379ec06d0e635f697198.zip
[gamespot] Use compat_urllib_parse_unquote
-rw-r--r--youtube_dl/extractor/gamespot.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/gamespot.py b/youtube_dl/extractor/gamespot.py
index 2d33fa7f5..b3f1bafcc 100644
--- a/youtube_dl/extractor/gamespot.py
+++ b/youtube_dl/extractor/gamespot.py
@@ -5,7 +5,7 @@ import json
 
 from .common import InfoExtractor
 from ..compat import (
-    compat_urllib_parse,
+    compat_urllib_parse_unquote,
     compat_urlparse,
 )
 from ..utils import (
@@ -75,7 +75,7 @@ class GameSpotIE(InfoExtractor):
         return {
             'id': data_video['guid'],
             'display_id': page_id,
-            'title': compat_urllib_parse.unquote(data_video['title']),
+            'title': compat_urllib_parse_unquote(data_video['title']),
             'formats': formats,
             'description': self._html_search_meta('description', webpage),
             'thumbnail': self._og_search_thumbnail(webpage),