[dcn] improve season info extraction

This commit is contained in:
remitamine 2015-10-31 15:40:11 +01:00
parent 486375154c
commit 50b9dd7344

View file

@ -210,12 +210,10 @@ class DCNSeasonIE(InfoExtractor):
})
show = self._download_json(request, show_id)
season_id = season_id or show['default_season']
season = {}
for _ in show['seasons']:
if _['id'] == season_id:
season = _
break
if not season_id:
season_id = show['default_season']
for season in show['seasons']:
if season['id'] == season_id:
title = season.get('title_en') or season['title_ar']
entries = []