Skip to content

Commit

Permalink
steamIE remove the HTMLparser object
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimeMF committed Jan 3, 2013
1 parent 5e9d042 commit 2671479
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion youtube_dl/InfoExtractors.py
Original file line number Diff line number Diff line change
Expand Up @@ -3697,7 +3697,6 @@ def _real_extract(self, url):
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')
Expand Down

0 comments on commit 2671479

Please sign in to comment.