aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xkaminokumo2
1 files changed, 1 insertions, 1 deletions
diff --git a/kaminokumo b/kaminokumo
index 62eb3e7..1053680 100755
--- a/kaminokumo
+++ b/kaminokumo
@@ -71,7 +71,7 @@ def manga_scrape():
search = soup.find_all("a", class_="chapter-name text-nowrap")
re_res = []
for thing in search:
- re_res.append(re.findall("Chapter [0-9]*", thing.text))
+ re_res.append(re.findall("Chapter [0-9]*[\.[0-9]*]?", thing.text))
print(name,"-->", re_res[0][0])