From: Sergey M. Date: Tue, 4 Feb 2014 14:31:25 +0000 (+0700) Subject: [lifenews] Fix video URL extraction (Closes #2302) X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=3c493256584fa5563df1e7963a40cb82ba1d1d01;p=youtube-dl [lifenews] Fix video URL extraction (Closes #2302) --- diff --git a/youtube_dl/extractor/lifenews.py b/youtube_dl/extractor/lifenews.py index 4e4035b76..051259857 100644 --- a/youtube_dl/extractor/lifenews.py +++ b/youtube_dl/extractor/lifenews.py @@ -31,7 +31,7 @@ class LifeNewsIE(InfoExtractor): webpage = self._download_webpage('http://lifenews.ru/mobile/news/%s' % video_id, video_id, 'Downloading page') video_url = self._html_search_regex( - r'', webpage, 'video URL') + r'', webpage, 'video URL') thumbnail = self._html_search_regex( r'', webpage, 'video thumbnail')