mirror of
https://gitlab.com/dstftw/youtube-dl.git
synced 2020-11-16 09:42:26 +00:00
Fixed small type issue
This commit is contained in:
parent
67dfbc0cb9
commit
5898e28272
|
@ -492,7 +492,8 @@ class YoutubeDL(object):
|
||||||
# that way it will silently go on when used with unsupporting IE
|
# that way it will silently go on when used with unsupporting IE
|
||||||
subtitles = info_dict['subtitles']
|
subtitles = info_dict['subtitles']
|
||||||
sub_format = self.params.get('subtitlesformat')
|
sub_format = self.params.get('subtitlesformat')
|
||||||
for sub_lang in subtitles.keys():
|
|
||||||
|
for sub_lang in subtitles:
|
||||||
sub = subtitles[sub_lang]
|
sub = subtitles[sub_lang]
|
||||||
if sub is None:
|
if sub is None:
|
||||||
continue
|
continue
|
||||||
|
|
Loading…
Reference in a new issue