From aa359943bbe422fa19fb0cb1df7399a986c1a3a5 Mon Sep 17 00:00:00 2001 From: TheDaChicken Date: Tue, 4 Sep 2018 17:02:17 -0700 Subject: [PATCH] Now lets see if that fixed adobe pass. --- 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 5fb20c45e..60b96a34f 100644 --- a/youtube_dl/extractor/cartoonnetwork.py +++ b/youtube_dl/extractor/cartoonnetwork.py @@ -29,7 +29,7 @@ class CartoonNetworkIE(TurnerBaseIE): title = self._html_search_regex(r'[^>]+.episodeTitle = "(.+?)"', webpage, 'title') auth = self._html_search_regex(r'[^>]+.authType = "(.+?)"', webpage, 'authType') if "unauth" in auth: - auth_required = 'false' + auth_required = '' if "auth" in auth: auth_required = 'true' videoType = self._html_search_regex(r'[^>]+.videoType = "(.+?)"', webpage, 'videoType')