aboutsummaryrefslogtreecommitdiff
path: root/plugins/manganelo.py
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2020-04-21 01:14:28 +0200
committerdec05eba <dec05eba@protonmail.com>2020-07-06 07:12:34 +0200
commit16f257a85a40a8da50cef1fa6ffce4e2da6da8b8 (patch)
treecfb0d9c739d1e282621f5e5585a004ea624f551e /plugins/manganelo.py
parent6f1afa9d76e9c2611a8025fb067d7ee14518dc18 (diff)
Fix incorrect response.ok call
Diffstat (limited to 'plugins/manganelo.py')
-rwxr-xr-xplugins/manganelo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/manganelo.py b/plugins/manganelo.py
index 3cb3118..3ce51b8 100755
--- a/plugins/manganelo.py
+++ b/plugins/manganelo.py
@@ -33,7 +33,7 @@ if len(sys.argv) < 2:
def download_file(url, save_path):
file_size = 0
with requests.get(url, stream=True) as response:
- if not response.ok():
+ if not response.ok:
return 0
with open(save_path, "wb") as file:
for chunk in response.iter_content(chunk_size=8192):