Set default continue behavior to true, no breakage observed in the wild

pull/8/head
Philipp Hagemeister 2012-02-26 23:44:32 +01:00
rodzic 09fbc6c952
commit 1ad85e5061
1 zmienionych plików z 1 dodań i 1 usunięć
youtube_dl

Wyświetl plik

@ -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)')