aboutsummaryrefslogtreecommitdiff
path: root/plugins/mangatown.py
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/mangatown.py')
-rwxr-xr-xplugins/mangatown.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mangatown.py b/plugins/mangatown.py
index d3a7e04..1a7eae9 100755
--- a/plugins/mangatown.py
+++ b/plugins/mangatown.py
@@ -56,7 +56,7 @@ def list_chapters(url, chapter_list_input):
for item in chapter_list_input:
title = item.get("title")
if title and len(title) > 0:
- seen_titles.add(title.lower().replace(" ", ""))
+ seen_titles.add(title.lower().replace(" ", "").replace("/", "_"))
seen_urls = set()
for item in chapter_list_input:
@@ -67,7 +67,7 @@ def list_chapters(url, chapter_list_input):
tree = etree.HTML(response.text)
chapters = []
for element in tree.xpath('//ul[@class="chapter_list"]//a'):
- element_text = element.text.strip()
+ element_text = element.text.strip().replace("/", "_")
url = element.attrib.get("href").strip()
if "/manga/" not in url:
continue