about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2011-09-15 19:27:21 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2011-09-15 19:27:21 +0200
commitc25303c3d5a9431b788dd1634e6ece8c310c6bf0 (patch)
treebcb3f649f70520646e51aa907c720fade9451d3a
parentcc025e1226f8d09482f9f5083f942965c7b4f8e6 (diff)
downloadyoutube-dl-c25303c3d5a9431b788dd1634e6ece8c310c6bf0.tar.gz
youtube-dl-c25303c3d5a9431b788dd1634e6ece8c310c6bf0.tar.xz
youtube-dl-c25303c3d5a9431b788dd1634e6ece8c310c6bf0.zip
Set continue to false again; we need to send to actually send a HEAD request to determine whether we can continue or not
-rwxr-xr-xyoutube-dl2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube-dl b/youtube-dl
index 89bdc2a5b..e45ba4fca 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)')