From 16f257a85a40a8da50cef1fa6ffce4e2da6da8b8 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Tue, 21 Apr 2020 01:14:28 +0200 Subject: Fix incorrect response.ok call --- plugins/manganelo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/manganelo.py') 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): -- cgit v1.2.3