aboutsummaryrefslogtreecommitdiffstats
path: root/kaminokumo
diff options
context:
space:
mode:
Diffstat (limited to 'kaminokumo')
-rwxr-xr-xkaminokumo4
1 files changed, 2 insertions, 2 deletions
diff --git a/kaminokumo b/kaminokumo
index 1fb6b6d..2b75181 100755
--- a/kaminokumo
+++ b/kaminokumo
@@ -134,7 +134,7 @@ def manga_scrape() -> None:
re_res = []
for thing in search:
re_res.append(
- green + thing["title"] + " >>> " + blue + thing["href"]
+ green + thing["title"] + " > " + blue + thing["href"]
)
try:
result += re_res[0] + "\n"
@@ -161,7 +161,7 @@ def anime_scrape() -> None:
if not child:
continue
re_res.append(re.findall("Episode [0-9]*$", thing.text))
- results.append(green + tag + " >>> " + blue + repr(max(re_res)))
+ results.append(green + tag + " > " + blue + repr(max(re_res)))
for result in results:
print(result)