summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaimemf93@gmail.com>2013-01-03 23:51:48 +0100
committerJaime Marquínez Ferrándiz <jaimemf93@gmail.com>2013-01-03 23:51:48 +0100
commit5e9d042d8f5dd3296c8a4fd7f538a22874c38324 (patch)
treeb167d13b8fe82c0b3a3fbf537861a160f341ea75
parent9cf98a2bcc9cae6bb308b42c0da3587b7d4115f2 (diff)
downloadyoutube-dl-5e9d042d8f5dd3296c8a4fd7f538a22874c38324.tar.gz
youtube-dl-5e9d042d8f5dd3296c8a4fd7f538a22874c38324.tar.xz
youtube-dl-5e9d042d8f5dd3296c8a4fd7f538a22874c38324.zip
steamIE follow @phihag suggestions
-rwxr-xr-xyoutube_dl/InfoExtractors.py6
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