Browse Source

steamIE remove the HTMLparser object

Jaime Marquínez Ferrándiz 12 years ago
parent
commit
26714799c9
1 changed files with 0 additions and 1 deletions
  1. 0 1
      youtube_dl/InfoExtractors.py

+ 0 - 1
youtube_dl/InfoExtractors.py

@@ -3697,7 +3697,6 @@ class SteamIE(InfoExtractor):
         namesRE = r'<span class="title">(?P<videoName>.+?)</span>'
         namesRE = r'<span class="title">(?P<videoName>.+?)</span>'
         titles = re.finditer(namesRE, webpage)
         titles = re.finditer(namesRE, webpage)
         videos = []
         videos = []
-        unescaper = compat_html_parser.HTMLParser()
         for vid,vtitle in zip(mweb,titles):
         for vid,vtitle in zip(mweb,titles):
             video_id = vid.group('videoID')
             video_id = vid.group('videoID')
             title = vtitle.group('videoName')
             title = vtitle.group('videoName')