1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-02 10:29:28 +00:00

[viki] Fix code format

This commit is contained in:
ping 2015-05-16 15:56:37 +08:00
parent 0d7f036429
commit 2f3bdab2b9

View file

@ -169,8 +169,7 @@ class VikiShowIE(InfoExtractor):
show_json = self._download_json(
'http://api.viki.io/v4/containers/%s/episodes.json?app=100000a&per_page=999&sort=number&direction=asc' % show_id,
show_id, note='Retrieve show json', errnote='Unable to get show json'
)
show_id, note='Retrieve show json', errnote='Unable to get show json')
entries = []
for video in show_json['response']:
video_id = video['id']