From c59e701e35dedb40da9d1e88c051141e63ded550 Mon Sep 17 00:00:00 2001 From: Philipp Hagemeister Date: Sat, 28 Mar 2015 08:11:32 +0100 Subject: Default to continuedl=True We already do this in the CLI interface, so it should be just fine. --- youtube_dl/downloader/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'youtube_dl/downloader/http.py') diff --git a/youtube_dl/downloader/http.py b/youtube_dl/downloader/http.py index 4047d7167..d136bebd1 100644 --- a/youtube_dl/downloader/http.py +++ b/youtube_dl/downloader/http.py @@ -49,7 +49,7 @@ class HttpFD(FileDownloader): open_mode = 'wb' if resume_len != 0: - if self.params.get('continuedl', False): + if self.params.get('continuedl', True): self.report_resuming_byte(resume_len) request.add_header('Range', 'bytes=%d-' % resume_len) open_mode = 'ab' -- cgit v1.2.3