youtube-dl

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

commit bec49996c68fe73b4e17e7418290072a4c4b7cdb
parent c8be7d5f7417f5779cda2c02653f38401dd7a6b7
Author: Sergey M․ <dstftw@gmail.com>
Date:   Wed, 13 Dec 2017 23:49:05 +0700

[downloader/http] Return actual download result (closes #14971)

Diffstat:
Myoutube_dl/downloader/http.py | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/youtube_dl/downloader/http.py b/youtube_dl/downloader/http.py @@ -284,8 +284,7 @@ class HttpFD(FileDownloader): while count <= retries: try: establish_connection() - download() - return True + return download() except RetryDownload as e: count += 1 if count <= retries: