diff options
author | Jaime Marquínez Ferrándiz <jaimemf93@gmail.com> | 2013-01-03 23:56:02 +0100 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaimemf93@gmail.com> | 2013-01-03 23:56:02 +0100 |
commit | 26714799c98f70f46e2f1da427ae8a5008e26521 (patch) | |
tree | fcf40b2cecc5982f45ac5e404f6967b8665a23a4 /youtube_dl | |
parent | 5e9d042d8f5dd3296c8a4fd7f538a22874c38324 (diff) |
steamIE remove the HTMLparser object
Diffstat (limited to 'youtube_dl')
-rwxr-xr-x | youtube_dl/InfoExtractors.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py index 44516fbdf..e380f62a1 100755 --- a/youtube_dl/InfoExtractors.py +++ b/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') |