aboutsummaryrefslogtreecommitdiff
path: root/plugins/manganelo.py
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2020-04-12 17:39:31 +0200
committerdec05eba <dec05eba@protonmail.com>2020-07-06 07:12:34 +0200
commitbdbf6b363c67992a82ea54fdd54474eaad39a3d8 (patch)
tree3e530e04a48d5949b51dbc190f0e31c882ee9d98 /plugins/manganelo.py
parentd2427a2fb2b8d20ec2c71d11004732cef9452e3f (diff)
Add support for mangadex
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 57ad6f5..352bb23 100755
--- a/plugins/manganelo.py
+++ b/plugins/manganelo.py
@@ -72,7 +72,7 @@ def list_chapters(url, chapter_list_input):
def download_chapter(url, download_dir):
response = requests.get(url)
if response.status_code != 200:
- print("Failed to list chapters, server responded with status code %d" % response.status_code)
+ print("Failed to list chapter images, server responded with status code %d" % response.status_code)
exit(2)
in_progress_filepath = os.path.join(download_dir, ".in_progress")