diff options
author | Ismael Mejia <iemejia@gmail.com> | 2013-08-07 18:48:24 +0200 |
---|---|---|
committer | Ismael Mejia <iemejia@gmail.com> | 2013-08-07 18:48:24 +0200 |
commit | 5898e282726bc2f54fc52fe425c389226e31a797 (patch) | |
tree | 1b2739a8ceea3ff37e9c056023bc587e7ff4963c /youtube_dl | |
parent | 67dfbc0cb92a19eda2981528b1456bdc0e3cb805 (diff) |
Fixed small type issue
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/YoutubeDL.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index e69d844b8..beed79fd0 100644 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -492,7 +492,8 @@ class YoutubeDL(object): # that way it will silently go on when used with unsupporting IE subtitles = info_dict['subtitles'] sub_format = self.params.get('subtitlesformat') - for sub_lang in subtitles.keys(): + + for sub_lang in subtitles: sub = subtitles[sub_lang] if sub is None: continue |