From: Jaime Marquínez Ferrándiz Date: Thu, 3 Jan 2013 22:56:02 +0000 (+0100) Subject: steamIE remove the HTMLparser object X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=26714799c98f70f46e2f1da427ae8a5008e26521;p=youtube-dl steamIE remove the HTMLparser object --- 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'(?P.+?)' 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')