aboutsummaryrefslogtreecommitdiff
path: root/plugins/mangadex.py
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/mangadex.py')
-rwxr-xr-xplugins/mangadex.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mangadex.py b/plugins/mangadex.py
index 3c70b59..be0e2ce 100755
--- a/plugins/mangadex.py
+++ b/plugins/mangadex.py
@@ -33,7 +33,7 @@ if len(sys.argv) < 2:
def download_file(url, save_path):
with requests.get(url, stream=True) as response:
- if not response.ok():
+ if not response.ok:
return False
with open(save_path, "wb") as file:
for chunk in response.iter_content(chunk_size=8192):