aboutsummaryrefslogtreecommitdiff
path: root/plugins/lhtranslation.py
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/lhtranslation.py')
-rwxr-xr-xplugins/lhtranslation.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/lhtranslation.py b/plugins/lhtranslation.py
index 193e35e..f07a793 100755
--- a/plugins/lhtranslation.py
+++ b/plugins/lhtranslation.py
@@ -32,7 +32,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):