diff options
author | Unknown <blackjack4494@web.de> | 2020-10-31 08:57:55 +0100 |
---|---|---|
committer | Unknown <blackjack4494@web.de> | 2020-10-31 08:57:55 +0100 |
commit | fa57af1ef333b11630ba6ae4353a94ea118883d4 (patch) | |
tree | 670074542ff6bede0928dc8b89fe744116f760f5 /youtube_dlc/YoutubeDL.py | |
parent | da6403d340bce709ca226fc3e195749032b02d88 (diff) | |
download | hypervideo-pre-fa57af1ef333b11630ba6ae4353a94ea118883d4.tar.lz hypervideo-pre-fa57af1ef333b11630ba6ae4353a94ea118883d4.tar.xz hypervideo-pre-fa57af1ef333b11630ba6ae4353a94ea118883d4.zip |
flake8. added sha256 check to updater.
Diffstat (limited to 'youtube_dlc/YoutubeDL.py')
-rw-r--r-- | youtube_dlc/YoutubeDL.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dlc/YoutubeDL.py b/youtube_dlc/YoutubeDL.py index 360595918..dd55ba0f2 100644 --- a/youtube_dlc/YoutubeDL.py +++ b/youtube_dlc/YoutubeDL.py @@ -1872,7 +1872,7 @@ class YoutubeDL(object): # subtitles download errors are already managed as troubles in relevant IE # that way it will silently go on when used with unsupporting IE subtitles = info_dict['requested_subtitles'] - ie = self.get_info_extractor(info_dict['extractor_key']) + # ie = self.get_info_extractor(info_dict['extractor_key']) for sub_lang, sub_info in subtitles.items(): sub_format = sub_info['ext'] sub_filename = subtitles_filename(filename, sub_lang, sub_format, info_dict.get('ext')) |