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)