1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-09-05 18:39:37 +02:00

Clarify -c. Do not pass it in if you don't know what you're doing

Suggested in #1743
This commit is contained in:
Philipp Hagemeister 2013-11-11 14:21:09 +01:00
parent 801dbbdffd
commit d4b7da84c3

View File

@ -358,7 +358,7 @@ def _hide_login_info(opts):
filesystem.add_option('-w', '--no-overwrites',
action='store_true', dest='nooverwrites', help='do not overwrite files', default=False)
filesystem.add_option('-c', '--continue',
action='store_true', dest='continue_dl', help='resume partially downloaded files', default=True)
action='store_true', dest='continue_dl', help='force resume of partially downloaded files. By default, youtube-dl will resume downloads if possible.', default=True)
filesystem.add_option('--no-continue',
action='store_false', dest='continue_dl',
help='do not resume partially downloaded files (restart from beginning)')