From 42a2155c1d7ad33d69c6481825d82828d970a413 Mon Sep 17 00:00:00 2001 From: Mark Lee Date: Fri, 20 Feb 2015 21:34:53 -0800 Subject: [PATCH] [mtv] fix show name regex --- youtube_dl/extractor/mtv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/extractor/mtv.py b/youtube_dl/extractor/mtv.py index 226f1d6f7..f953a622e 100644 --- a/youtube_dl/extractor/mtv.py +++ b/youtube_dl/extractor/mtv.py @@ -168,7 +168,7 @@ class MTVServicesInfoExtractor(InfoExtractor): videos_info = self._get_videos_info(mgid) if self._downloader.params.get('joinparts'): show_name = self._html_search_regex( - r'(.*?)', + r'(.*?)', webpage, 'show name') video_name = self._og_search_title(webpage) description = self._og_search_description(webpage)