[docs] Make --break-on-existing help string more clear

Authored by: bashonly
This commit is contained in:
bashonly 2024-10-31 23:17:35 -05:00
parent 091805bb11
commit d5219cfea3
No known key found for this signature in database
GPG key ID: 783F096F253D15B0
2 changed files with 4 additions and 2 deletions

View file

@ -479,7 +479,8 @@ ## Video Selection:
--no-download-archive Do not use archive file (default)
--max-downloads NUMBER Abort after downloading NUMBER files
--break-on-existing Stop the download process when encountering
a file that is in the archive
a file that is in the archive supplied with
the --download-archive option
--no-break-on-existing Do not stop the download process when
encountering a file that is in the archive
(default)

View file

@ -700,7 +700,8 @@ def _alias_callback(option, opt_str, value, parser, opts, nargs):
selection.add_option(
'--break-on-existing',
action='store_true', dest='break_on_existing', default=False,
help='Stop the download process when encountering a file that is in the archive')
help='Stop the download process when encountering a file that is in the archive '
'supplied with the --download-archive option')
selection.add_option(
'--no-break-on-existing',
action='store_false', dest='break_on_existing',