Browse Source

steamIE remove the HTMLparser object

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

1
youtube_dl/InfoExtractors.py

@ -3697,7 +3697,6 @@ class SteamIE(InfoExtractor):
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):
video_id = vid.group('videoID')
title = vtitle.group('videoName')

Loading…
Cancel
Save