From 257abcbd3c6b8a4525592878619912953748b725 Mon Sep 17 00:00:00 2001 From: AndroKev Date: Fri, 30 Oct 2015 10:16:38 +0100 Subject: [PATCH] Playlist order chaged (oldest first, newest last) --- youtube_dl/extractor/nowtv.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/youtube_dl/extractor/nowtv.py b/youtube_dl/extractor/nowtv.py index 6e09602b4..d2f2707ec 100644 --- a/youtube_dl/extractor/nowtv.py +++ b/youtube_dl/extractor/nowtv.py @@ -200,7 +200,6 @@ class NowTVIE(InfoExtractor): if season: if season != season_item['seoheadline']: continue - for items in season_item['formatTabPages']['items']: try: for episode in items['container']['movies']['items']: @@ -220,7 +219,7 @@ class NowTVIE(InfoExtractor): except: continue - return self.playlist_result(videos.reverse(), playlist_id, playlist_title) + return self.playlist_result(reversed(videos), playlist_id, playlist_title) def episode_details(self, info):