Fix instaloadercontext.get_and_write_raw()
This commit is contained in:
parent
c7f6cff15a
commit
dd1cbf0a1d
@ -315,7 +315,7 @@ class InstaloaderContext:
|
||||
:raises ConnectionException: When download repeatedly failed."""
|
||||
try:
|
||||
with self.get_anonymous_session() as anonymous_session:
|
||||
resp = anonymous_session.get(url)
|
||||
resp = anonymous_session.get(url, stream=True)
|
||||
if resp.status_code == 200:
|
||||
self.log(filename, end=' ', flush=True)
|
||||
with open(filename, 'wb') as file:
|
||||
|
Loading…
Reference in New Issue
Block a user