From 3c493256584fa5563df1e7963a40cb82ba1d1d01 Mon Sep 17 00:00:00 2001 From: "Sergey M." Date: Tue, 4 Feb 2014 21:31:25 +0700 Subject: [PATCH] [lifenews] Fix video URL extraction (Closes #2302) --- youtube_dl/extractor/lifenews.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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')