From 05000371607ff15ae6cb88d0ee54c482db8a4608 Mon Sep 17 00:00:00 2001 From: Alpesh Valia Date: Thu, 16 Mar 2017 17:41:38 +0530 Subject: [PATCH] [hotstar] changed base class of hotstarplaylist --- youtube_dl/extractor/hotstar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/extractor/hotstar.py b/youtube_dl/extractor/hotstar.py index aae970213..59f0beb7e 100644 --- a/youtube_dl/extractor/hotstar.py +++ b/youtube_dl/extractor/hotstar.py @@ -101,7 +101,7 @@ class HotStarIE(InfoExtractor): 'series': video_data.get('contentTitle'), } -class HotStarPlaylistIE(HotStarBaseIE): +class HotStarPlaylistIE(InfoExtractor): IE_NAME = 'hotstar:playlist' _VALID_URL = r'https?://(?:www\.)?hotstar\.com/tv/(?P.+)/(?P\d+)/episodes/(?P\d{1,})'