We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59065e4 commit baebe36Copy full SHA for baebe36
inoreader/utils.py
@@ -57,7 +57,7 @@ def download_image(url, path, filename, proxies=None):
57
if suffix == 'svg+xml':
58
suffix = 'svg'
59
60
- image_filename = f'{filename}.{suffix}'
+ image_filename = filename + '.' + suffix
61
with open(os.path.join(path, image_filename), 'wb') as f:
62
response.raw.decode_content = True
63
shutil.copyfileobj(response.raw, f)
0 commit comments