youtube-dl

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

commit 0837992a226690d514eb01b7460bed4a33fddb30
parent b55715934bb7f9474f69b99e4d51cc83dee7cbef
Author: Sergey M․ <dstftw@gmail.com>
Date:   Tue, 22 Sep 2020 06:44:14 +0700

[downloader/http] Fix access to not yet opened stream in retry

Diffstat:
Myoutube_dl/downloader/http.py | 7++++---
1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/youtube_dl/downloader/http.py b/youtube_dl/downloader/http.py @@ -223,9 +223,10 @@ class HttpFD(FileDownloader): def retry(e): to_stdout = ctx.tmpfilename == '-' - if not to_stdout: - ctx.stream.close() - ctx.stream = None + if ctx.stream is not None: + if not to_stdout: + ctx.stream.close() + ctx.stream = None ctx.resume_len = byte_counter if to_stdout else os.path.getsize(encodeFilename(ctx.tmpfilename)) raise RetryDownload(e)