From: Jaime Marquínez Ferrándiz Date: Wed, 4 Mar 2015 11:14:38 +0000 (+0100) Subject: [downloader/http] Add missing fields for _hook_progress call X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=youtube-dl;a=commitdiff_plain;h=f28fe66970370b5df649aa457e52cf99f6a49905 [downloader/http] Add missing fields for _hook_progress call It would fail if you run 'youtube-dl --no-part URL' a second time when the file has already been downloaded. (Reported in Fedora: https://bugzilla.redhat.com/show_bug.cgi?id=1195779) --- diff --git a/youtube_dl/downloader/http.py b/youtube_dl/downloader/http.py index 5e9982799..4047d7167 100644 --- a/youtube_dl/downloader/http.py +++ b/youtube_dl/downloader/http.py @@ -92,6 +92,8 @@ class HttpFD(FileDownloader): self._hook_progress({ 'filename': filename, 'status': 'finished', + 'downloaded_bytes': resume_len, + 'total_bytes': resume_len, }) return True else: