We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0661494 commit 86b9a25Copy full SHA for 86b9a25
garfield.py
@@ -41,7 +41,7 @@ def daterange(start, end):
41
if not os.path.exists(file_path):
42
try:
43
with urllib.request.urlopen(image_url) as im:
44
- print(f"Downloading: {image_url}")
+ print(f"Downloading {image_url} into {file_path}")
45
with open(file_path, "wb") as save_file:
46
save_file.write(im.read())
47
except HTTPError as e:
0 commit comments