X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Ffranceinter.py;h=deb1b0b9dc55244874029af3c47412184c2c1e50;hb=7d4d5f25edb607371bb53c3b9bd8ed805c6fb0f6;hp=7728410da93d17d4bdd112ab3091512c2e335554;hpb=677b3ce82f7bb27f614f3972a6d6581bf89e14a6;p=youtube-dl diff --git a/youtube_dl/extractor/franceinter.py b/youtube_dl/extractor/franceinter.py index 7728410da..deb1b0b9d 100644 --- a/youtube_dl/extractor/franceinter.py +++ b/youtube_dl/extractor/franceinter.py @@ -20,7 +20,7 @@ class FranceInterIE(InfoExtractor): def _real_extract(self, url): mobj = re.match(self._VALID_URL, url) video_id = mobj.group('id') - + webpage = self._download_webpage(url, video_id) title = self._html_search_regex( r'(.*?)', webpage, 'title') @@ -36,5 +36,3 @@ class FranceInterIE(InfoExtractor): }], 'title': title, } - - \ No newline at end of file