Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Ralf
youtube-dl
Commits
0837992a
Unverified
Commit
0837992a
authored
Sep 22, 2020
by
Sergey M․
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[downloader/http] Fix access to not yet opened stream in retry
parent
b5571593
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
youtube_dl/downloader/http.py
youtube_dl/downloader/http.py
+4
-3
No files found.
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
Markdown
is supported
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