From f0877a445e29ff58a4d377c8a193efb8f7c9b8e8 Mon Sep 17 00:00:00 2001 From: Philipp Hagemeister Date: Fri, 8 Feb 2013 11:00:28 +0100 Subject: Add tests for keek --- youtube_dl/InfoExtractors.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'youtube_dl/InfoExtractors.py') diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py index 2eef2a698..ac69f82fe 100755 --- a/youtube_dl/InfoExtractors.py +++ b/youtube_dl/InfoExtractors.py @@ -3955,9 +3955,9 @@ class KeekIE(InfoExtractor): thumbnail = u'http://cdn.keek.com/keek/thumbnail/%s/w100/h75' % video_id webpage = self._download_webpage(url, video_id) m = re.search(r'[\s\n]+

(?P\w+)

', webpage) - uploader = m.group('uploader') + uploader = unescapeHTML(m.group('uploader')) info = { 'id':video_id, 'url':video_url, @@ -3965,7 +3965,7 @@ class KeekIE(InfoExtractor): 'title': title, 'thumbnail': thumbnail, 'uploader': uploader - } + } return [info] def gen_extractors(): -- cgit v1.2.3