diff options
author | ping <lipng.ong@gmail.com> | 2015-05-16 15:56:37 +0800 |
---|---|---|
committer | ping <lipng.ong@gmail.com> | 2015-05-16 15:56:37 +0800 |
commit | 2f3bdab2b90c6695c0a478f352967b0c9da4f23f (patch) | |
tree | e56b1a066c647c63fb743d1495282e18b5f167d4 | |
parent | 0d7f03642976e7859e290b06db41d20a4bfd3a38 (diff) |
[viki] Fix code format
-rw-r--r-- | youtube_dl/extractor/viki.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/youtube_dl/extractor/viki.py b/youtube_dl/extractor/viki.py index 4d185c0e6..40a73f561 100644 --- a/youtube_dl/extractor/viki.py +++ b/youtube_dl/extractor/viki.py @@ -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'] |