diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-06-22 19:14:04 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-06-22 19:14:36 +0530 |
commit | 28163422a667d63cceb0e8bf27d150951e78d313 (patch) | |
tree | c3740ea1f0cd2a4026af8c86c6f21764ebde63f3 | |
parent | 1ac4fd80c87d4e566ae680076e788a63d187199b (diff) | |
download | hypervideo-pre-28163422a667d63cceb0e8bf27d150951e78d313.tar.lz hypervideo-pre-28163422a667d63cceb0e8bf27d150951e78d313.tar.xz hypervideo-pre-28163422a667d63cceb0e8bf27d150951e78d313.zip |
Fix `--downloader native`
Bug in 7b2c3f47c6b586a208655fcfc716bba3f8619d1e
-rw-r--r-- | yt_dlp/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/yt_dlp/__init__.py b/yt_dlp/__init__.py index db77ee39b..ee873e00c 100644 --- a/yt_dlp/__init__.py +++ b/yt_dlp/__init__.py @@ -403,6 +403,8 @@ def validate_options(opts): default_downloader = None for proto, path in opts.external_downloader.items(): + if path == 'native': + continue ed = get_external_downloader(path) if ed is None: raise ValueError( |