From 9e35d5c0acc3ccb6c2af1e968495a39f1dec3479 Mon Sep 17 00:00:00 2001 From: Parth Verma Date: Tue, 1 May 2018 01:32:19 +0530 Subject: [PATCH] Fixed regex --- youtube_dl/extractor/ibm_think.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/extractor/ibm_think.py b/youtube_dl/extractor/ibm_think.py index 4541c78ae..5a0ee10bf 100644 --- a/youtube_dl/extractor/ibm_think.py +++ b/youtube_dl/extractor/ibm_think.py @@ -24,7 +24,7 @@ class IbmThinkPlaylistIE(InfoExtractor): def _real_extract(self, url): playlist_id = self._match_id(url) webpage = self._download_webpage(url, playlist_id) - entries = [self.url_result(m, GenericIE.ie_key()) for m in re.findall(r'', webpage)] + entries = [self.url_result(m, GenericIE.ie_key()) for m in re.findall(r'', webpage)] title = self._html_search_regex(r'.+?\s\|\s.+?\s\|\s(.+?)', webpage, 'title', fatal=False) description = self._og_search_description(webpage) return self.playlist_result(entries, playlist_id, title, description)