aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rwxr-xr-xplugins/manganelo.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/manganelo.py b/plugins/manganelo.py
index a37dfa7..36f1daa 100755
--- a/plugins/manganelo.py
+++ b/plugins/manganelo.py
@@ -88,7 +88,7 @@ if command == "list":
if len(sys.argv) < 3:
usage_list()
- url = sys.argv[2]
+ url = sys.argv[2].replace("mangakakalot", "manganelo")
latest = ""
if len(sys.argv) >= 4:
latest = sys.argv[3]
@@ -96,7 +96,7 @@ if command == "list":
elif command == "download":
if len(sys.argv) < 4:
usage_download()
- url = sys.argv[2]
+ url = sys.argv[2].replace("mangakakalot", "manganelo")
download_dir = sys.argv[3]
download_chapter(url, download_dir)
else: