aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaimemf93@gmail.com>2013-01-03 23:56:02 +0100
committerJaime Marquínez Ferrándiz <jaimemf93@gmail.com>2013-01-03 23:56:02 +0100
commit26714799c98f70f46e2f1da427ae8a5008e26521 (patch)
treefcf40b2cecc5982f45ac5e404f6967b8665a23a4 /youtube_dl
parent5e9d042d8f5dd3296c8a4fd7f538a22874c38324 (diff)
downloadyoutube-dl-26714799c98f70f46e2f1da427ae8a5008e26521.tar.xz
steamIE remove the HTMLparser object
Diffstat (limited to 'youtube_dl')
-rwxr-xr-xyoutube_dl/InfoExtractors.py1
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')