summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2020-09-22 06:44:14 +0700
committerSergey M․ <dstftw@gmail.com>2020-09-22 06:44:14 +0700
commit0837992a226690d514eb01b7460bed4a33fddb30 (patch)
tree993f4e4afa5ede420f4ed38f09a178d50c6e33ae
parentb55715934bb7f9474f69b99e4d51cc83dee7cbef (diff)
[downloader/http] Fix access to not yet opened stream in retry
-rw-r--r--youtube_dl/downloader/http.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/youtube_dl/downloader/http.py b/youtube_dl/downloader/http.py
index 6ef26548d..04da14d91 100644
--- 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)