From: remitamine Date: Tue, 22 Dec 2015 10:27:18 +0000 (+0100) Subject: [franceinter] fix title extraction X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=220bc3f0e3777b89de335cdbc58a7d105584f06b;p=youtube-dl [franceinter] fix title extraction --- diff --git a/youtube_dl/extractor/franceinter.py b/youtube_dl/extractor/franceinter.py index 6613ee17a..90a17815d 100644 --- a/youtube_dl/extractor/franceinter.py +++ b/youtube_dl/extractor/franceinter.py @@ -33,7 +33,7 @@ class FranceInterIE(InfoExtractor): video_url = 'http://www.franceinter.fr/' + path title = self._html_search_regex( - r'(.+?)', webpage, 'title') + r'(.+?)', webpage, 'title') description = self._html_search_regex( r'(.*?)', webpage, 'description', fatal=False)