fix syntax

This commit is contained in:
Pablo Castorino 2020-03-22 12:45:48 -03:00
parent 185849f1d4
commit c7db73fcd3
1 changed files with 5 additions and 6 deletions

View File

@ -83,7 +83,7 @@ class ContarBaseIE(InfoExtractor):
def _get_season_number(self, serie_info, video_id):
for season in serie_info.get('seasons', []).get('data', []):
season_number = season.get('name')
for episode in season.get('videos',[]).get('data', []):
for episode in season.get('videos', []).get('data', []):
if episode.get('id') == video_id:
return season_number
return None
@ -225,11 +225,10 @@ class ContarChannelIE(ContarBaseIE):
'id': '242',
'title': 'md5:352d30d8fa7896eec02f65b2c7299d27',
'description': 'md5:ac4e1f02201cffb86ac8ed4bcba4a593'
},
},
'playlist_mincount': 68,
'params': {
'username': 'ytdl@yt-dl.org',
'password': '(snip)',
'usenetrc': True,
'skip_download': True
}
}