Set default continue behavior to true, no breakage observed in the wild
authorPhilipp Hagemeister <phihag@phihag.de>
Sun, 26 Feb 2012 22:44:32 +0000 (23:44 +0100)
committerPhilipp Hagemeister <phihag@phihag.de>
Sun, 26 Feb 2012 22:44:32 +0000 (23:44 +0100)
youtube_dl/__init__.py

index 4c9c237..ffd837c 100755 (executable)
@@ -4369,7 +4369,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=False)
+                       action='store_true', dest='continue_dl', help='resume partially downloaded files', default=True)
        filesystem.add_option('--no-continue',
                        action='store_false', dest='continue_dl',
                        help='do not resume partially downloaded files (restart from beginning)')