From: Philipp Hagemeister Date: Thu, 11 Apr 2013 16:39:13 +0000 (+0200) Subject: Fix keek title extraction X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=f4381ab88a5bebc241d6f089719720049014ced9;p=youtube-dl Fix keek title extraction --- diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py index 94e4451ed..7deb488a9 100755 --- a/youtube_dl/InfoExtractors.py +++ b/youtube_dl/InfoExtractors.py @@ -4136,7 +4136,7 @@ class KeekIE(InfoExtractor): video_url = u'http://cdn.keek.com/keek/video/%s' % video_id 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\s]+?

(?P.+?)

', webpage) uploader = clean_html(m.group('uploader'))