From c25303c3d5a9431b788dd1634e6ece8c310c6bf0 Mon Sep 17 00:00:00 2001 From: Philipp Hagemeister Date: Thu, 15 Sep 2011 19:27:21 +0200 Subject: [PATCH] Set continue to false again; we need to send to actually send a HEAD request to determine whether we can continue or not --- youtube-dl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube-dl b/youtube-dl index 89bdc2a..e45ba4f 100755 --- a/youtube-dl +++ b/youtube-dl @@ -3569,7 +3569,7 @@ def parseOpts(): 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='resume partially downloaded files', default=False) filesystem.add_option('--no-continue', action='store_false', dest='continue_dl', help='do not resume partially downloaded files (restart from beginning)') -- 1.8.3.1