mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-10-31 22:55:26 +00:00
[downloader/http] Fix access to not yet opened stream in retry
This commit is contained in:
parent
b55715934b
commit
0837992a22
1 changed files with 4 additions and 3 deletions
|
@ -223,6 +223,7 @@ class HttpFD(FileDownloader):
|
|||
|
||||
def retry(e):
|
||||
to_stdout = ctx.tmpfilename == '-'
|
||||
if ctx.stream is not None:
|
||||
if not to_stdout:
|
||||
ctx.stream.close()
|
||||
ctx.stream = None
|
||||
|
|
Loading…
Reference in a new issue