forked from DRMTalks/devine
Add missing while loop to Requests downloader
This commit is contained in:
parent
2056e056a4
commit
172ab64017
|
@ -67,6 +67,7 @@ def requests(
|
||||||
out_path.parent.mkdir(parents=True, exist_ok=True)
|
out_path.parent.mkdir(parents=True, exist_ok=True)
|
||||||
attempts = 1
|
attempts = 1
|
||||||
|
|
||||||
|
while True:
|
||||||
try:
|
try:
|
||||||
stream = session.get(url, stream=True)
|
stream = session.get(url, stream=True)
|
||||||
stream.raise_for_status()
|
stream.raise_for_status()
|
||||||
|
|
Loading…
Reference in New Issue