Browse Source
[downloader/http] Fix access to not yet opened stream in retry
master
Sergey M․
4 years ago
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with
4 additions and
3 deletions
-
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) |
|
|
|
|
|
|
|