From 80f77c3b591a61690fd9856d13e6ac17e22d49a9 Mon Sep 17 00:00:00 2001 From: TheDaChicken Date: Mon, 27 Aug 2018 15:48:01 -0700 Subject: [PATCH] [CartoonNetwork] Changes stuff I forgot Changed description's label from authType to description --- youtube_dl/extractor/cartoonnetwork.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/extractor/cartoonnetwork.py b/youtube_dl/extractor/cartoonnetwork.py index a1e324105..810eff47a 100644 --- a/youtube_dl/extractor/cartoonnetwork.py +++ b/youtube_dl/extractor/cartoonnetwork.py @@ -26,7 +26,7 @@ class CartoonNetworkIE(TurnerBaseIE): video_id = self._html_search_regex(r'_cnglobal.currentVideo.mediaId = "(.+?)"', webpage, 'video_id') title = self._html_search_regex(r'_cnglobal.currentVideo.episodeTitle = "(.+?)"', webpage, 'title') auth_required = self._html_search_regex(r'_cnglobal.currentVideo.authType = "(.+?)"', webpage, 'authType') - description = self._html_search_regex(r'
(.+?)
', webpage, 'authType') + description = self._html_search_regex(r'
(.+?)
', webpage, 'description') info = self._extract_ngtv_info( video_id, {'networkId': 'cartoonnetwork'},