diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-04-20 02:25:33 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-04-20 21:01:34 +0530 |
commit | 62f6f1cbf253240a026a70538b5b58945563fc90 (patch) | |
tree | 60a266d3e67480d4acdc106f7574c363df41586c /yt_dlp/options.py | |
parent | e08585b0f84368e2cb8c78b271116a2d13f6e032 (diff) | |
download | hypervideo-pre-62f6f1cbf253240a026a70538b5b58945563fc90.tar.lz hypervideo-pre-62f6f1cbf253240a026a70538b5b58945563fc90.tar.xz hypervideo-pre-62f6f1cbf253240a026a70538b5b58945563fc90.zip |
Don't imply `-s` for later stages of `-O`
Diffstat (limited to 'yt_dlp/options.py')
-rw-r--r-- | yt_dlp/options.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/yt_dlp/options.py b/yt_dlp/options.py index 0c042caf4..73bc88b89 100644 --- a/yt_dlp/options.py +++ b/yt_dlp/options.py @@ -932,7 +932,8 @@ def create_parser(): }, help=( 'Field name or output template to print to screen, optionally prefixed with when to print it, separated by a ":". ' 'Supported values of "WHEN" are the same as that of --use-postprocessor, and "video" (default). ' - 'Implies --quiet and --simulate (unless --no-simulate is used). This option can be used multiple times')) + 'Implies --quiet. Implies --simulate unless --no-simulate or later stages of WHEN are used. ' + 'This option can be used multiple times')) verbosity.add_option( '--print-to-file', metavar='[WHEN:]TEMPLATE FILE', dest='print_to_file', default={}, type='str', nargs=2, |