mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 06:27:21 +00:00
[docs] Make --break-on-existing
help string more clear
Authored by: bashonly
This commit is contained in:
parent
091805bb11
commit
d5219cfea3
|
@ -479,7 +479,8 @@ ## Video Selection:
|
||||||
--no-download-archive Do not use archive file (default)
|
--no-download-archive Do not use archive file (default)
|
||||||
--max-downloads NUMBER Abort after downloading NUMBER files
|
--max-downloads NUMBER Abort after downloading NUMBER files
|
||||||
--break-on-existing Stop the download process when encountering
|
--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
|
--no-break-on-existing Do not stop the download process when
|
||||||
encountering a file that is in the archive
|
encountering a file that is in the archive
|
||||||
(default)
|
(default)
|
||||||
|
|
|
@ -700,7 +700,8 @@ def _alias_callback(option, opt_str, value, parser, opts, nargs):
|
||||||
selection.add_option(
|
selection.add_option(
|
||||||
'--break-on-existing',
|
'--break-on-existing',
|
||||||
action='store_true', dest='break_on_existing', default=False,
|
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(
|
selection.add_option(
|
||||||
'--no-break-on-existing',
|
'--no-break-on-existing',
|
||||||
action='store_false', dest='break_on_existing',
|
action='store_false', dest='break_on_existing',
|
||||||
|
|
Loading…
Reference in a new issue