diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-05-24 17:30:28 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-05-27 04:32:54 +0530 |
commit | 6b9e832db7dedcd6f2e7be1bf44f56a91ff18737 (patch) | |
tree | c699c647ca5ab5e54d0678d2c136da37960bc3a2 /yt_dlp/options.py | |
parent | d2ff2c91bbac42e4d84131d7cf23d79c910d5309 (diff) | |
download | hypervideo-pre-6b9e832db7dedcd6f2e7be1bf44f56a91ff18737.tar.lz hypervideo-pre-6b9e832db7dedcd6f2e7be1bf44f56a91ff18737.tar.xz hypervideo-pre-6b9e832db7dedcd6f2e7be1bf44f56a91ff18737.zip |
`--config-location -` to provide options interactively
Diffstat (limited to 'yt_dlp/options.py')
-rw-r--r-- | yt_dlp/options.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yt_dlp/options.py b/yt_dlp/options.py index c0718e007..65391410f 100644 --- a/yt_dlp/options.py +++ b/yt_dlp/options.py @@ -366,8 +366,8 @@ def create_parser(): '--config-locations', dest='config_locations', metavar='PATH', action='append', help=( - 'Location of the main configuration file; either the path to the config or its containing directory. ' - 'Can be used multiple times and inside other configuration files')) + 'Location of the main configuration file; either the path to the config or its containing directory ' + '("-" for stdin). Can be used multiple times and inside other configuration files')) general.add_option( '--flat-playlist', action='store_const', dest='extract_flat', const='in_playlist', default=False, |