youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 123397317c9906bf53a23b6b426db0b08c70da32
parent dc570c4951d397ded7535393a9f0972c9cd0bc04
Author: Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Date:   Tue,  3 Mar 2015 18:45:56 +0100

[downloader/http] Remove wrong '_hook_progress' call (fixes #5117)

Diffstat:
Myoutube_dl/downloader/http.py | 6------
1 file changed, 0 insertions(+), 6 deletions(-)

diff --git a/youtube_dl/downloader/http.py b/youtube_dl/downloader/http.py @@ -218,12 +218,6 @@ class HttpFD(FileDownloader): if tmpfilename != '-': stream.close() - self._hook_progress({ - 'downloaded_bytes': byte_counter, - 'total_bytes': data_len, - 'tmpfilename': tmpfilename, - 'status': 'error', - }) if data_len is not None and byte_counter != data_len: raise ContentTooShortError(byte_counter, int(data_len)) self.try_rename(tmpfilename, filename)