From ab84ca19f2e5180f467de71ea189eae5e0a9cc7b Mon Sep 17 00:00:00 2001 From: fnord Date: Sat, 25 Jul 2015 20:02:59 -0500 Subject: [PATCH] Title extract adjustment --- youtube_dl/extractor/cbc.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/youtube_dl/extractor/cbc.py b/youtube_dl/extractor/cbc.py index 73c0bbc7c..5420d445f 100644 --- a/youtube_dl/extractor/cbc.py +++ b/youtube_dl/extractor/cbc.py @@ -56,8 +56,7 @@ class CBCIE(InfoExtractor): name = url_basename(url) webpage = self._download_webpage(url, name) - title = unescapeHTML( - self._search_regex('\s*(.+?)\s*', webpage, 'title')) + title = self._html_search_regex('\s*(.+?)\s*', webpage, 'title') cbcapp = re.findall( r'CBC.APP.Caffeine.initInstance\((.+?)\);', webpage, re.DOTALL)