commit: d4b7da84c3c20e86b67489a0521731c2c93385f7
parent 801dbbdffd9df57e4051e8fd01efbb6104f99c26
Author: Philipp Hagemeister <phihag@phihag.de>
Date: Mon, 11 Nov 2013 14:21:09 +0100
Clarify -c. Do not pass it in if you don't know what you're doing
Suggested in #1743
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py
@@ -358,7 +358,7 @@ def parseOpts(overrideArguments=None):
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)')