aboutsummaryrefslogtreecommitdiff
path: root/plugins/manganelo.py
diff options
context:
space:
mode:
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")