diff options
author | Jaime Marquínez Ferrándiz <jaimemf93@gmail.com> | 2013-01-03 23:51:48 +0100 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaimemf93@gmail.com> | 2013-01-03 23:51:48 +0100 |
commit | 5e9d042d8f5dd3296c8a4fd7f538a22874c38324 (patch) | |
tree | b167d13b8fe82c0b3a3fbf537861a160f341ea75 /youtube_dl | |
parent | 9cf98a2bcc9cae6bb308b42c0da3587b7d4115f2 (diff) |
steamIE follow @phihag suggestions
Diffstat (limited to 'youtube_dl')
-rwxr-xr-x | youtube_dl/InfoExtractors.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py index f72defdf2..44516fbdf 100755 --- a/youtube_dl/InfoExtractors.py +++ b/youtube_dl/InfoExtractors.py @@ -3694,8 +3694,8 @@ class SteamIE(InfoExtractor): videourl = 'http://store.steampowered.com/video/%s/' % gameID webpage = self._download_webpage(videourl, gameID) mweb = re.finditer(urlRE, webpage) - namesRE = r'<span class="title">(?P<videoName>.+)</span>' - titles = list(re.finditer(namesRE, webpage)) + namesRE = r'<span class="title">(?P<videoName>.+?)</span>' + titles = re.finditer(namesRE, webpage) videos = [] unescaper = compat_html_parser.HTMLParser() for vid,vtitle in zip(mweb,titles): @@ -3708,7 +3708,7 @@ class SteamIE(InfoExtractor): 'id':video_id, 'url':video_url, 'ext': 'flv', - 'title': unescaper.unescape(title) + 'title': unescapeHTML(title) } videos.append(info) return videos |