move inside the with block
This commit is contained in:
parent
e3140c607a
commit
396570ff46
@ -37,9 +37,9 @@ def background(f):
|
|||||||
|
|
||||||
#@background
|
#@background
|
||||||
def download(url, filepath, metadata=None):
|
def download(url, filepath, metadata=None):
|
||||||
r = session.get(url, stream=True, timeout=6)
|
|
||||||
image = write_exif(r.content, metadata)
|
|
||||||
with open(str(filepath), "wb") as f:
|
with open(str(filepath), "wb") as f:
|
||||||
|
r = session.get(url, stream=True, timeout=6)
|
||||||
|
image = write_exif(r.content, metadata)
|
||||||
f.write(image)
|
f.write(image)
|
||||||
print("{} downloaded".format(filepath))
|
print("{} downloaded".format(filepath))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user