Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Shawn Webb
youtube-dl
Commits
0837992a
Unverified
Commit
0837992a
authored
Sep 22, 2020
by
Sergey M․
Browse files
[downloader/http] Fix access to not yet opened stream in retry
parent
b5571593
Changes
1
Hide whitespace changes
Inline
Side-by-side
youtube_dl/downloader/http.py
View file @
0837992a
...
...
@@ -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
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment