diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-07-17 23:38:30 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-07-17 23:38:30 +0600 |
commit | 1f80e360fce9fc057847379ec06d0e635f697198 (patch) | |
tree | 62f48fad764cc0640883842d14da36bd7f8e698b /youtube_dl/extractor/gamespot.py | |
parent | d7011316d0bce88796a6d33e895fdafa231fd8ec (diff) |
[gamespot] Use compat_urllib_parse_unquote
Diffstat (limited to 'youtube_dl/extractor/gamespot.py')
-rw-r--r-- | youtube_dl/extractor/gamespot.py | 4 |
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), |