diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-05-02 07:07:35 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-05-02 07:07:35 +0600 |
commit | 686cc8963441c37105c0447f31c5ea21405be05a (patch) | |
tree | f611e1f97395e80ed0a530fb1e7a40e5095d0a4d /youtube_dl/extractor | |
parent | 9508738f9a9d6fd3de2e60cd7ccb4c8631bea6f4 (diff) |
[discovery] Fix typo
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/discovery.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/discovery.py b/youtube_dl/extractor/discovery.py index 7c554ec14..55853f76f 100644 --- a/youtube_dl/extractor/discovery.py +++ b/youtube_dl/extractor/discovery.py @@ -71,7 +71,7 @@ class DiscoveryIE(InfoExtractor): entries = [] for idx, video_info in enumerate(info['playlist']): - subtitles = [] + subtitles = {} caption_url = video_info.get('captionsUrl') if caption_url: subtitles = { |