mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
steamIE remove the HTMLparser object
This commit is contained in:
parent
5e9d042d8f
commit
26714799c9
1 changed files with 0 additions and 1 deletions
|
@ -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')
|
||||
|
|
Loading…
Reference in a new issue