From 17bfdc7404d9760ccbbb9b3636b3e5fce9d7adec Mon Sep 17 00:00:00 2001 From: Parth Verma Date: Mon, 30 Apr 2018 19:54:45 +0530 Subject: [PATCH] Removed superflous non capturing groups --- 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 b6a45403f..2a63e0f38 100644 --- a/youtube_dl/extractor/ibm_think.py +++ b/youtube_dl/extractor/ibm_think.py @@ -50,6 +50,6 @@ class IbmThinkPlaylistIE(InfoExtractor): 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)] - title = self._html_search_regex(r'(?:.+?)\s\|\s(?:.+?)\s\|\s(.+?)', webpage, 'title') + title = self._html_search_regex(r'.+?\s\|\s.+?\s\|\s(.+?)', webpage, 'title') description = self._og_search_description(webpage) return self.playlist_result(entries, playlist_id, title, description)