aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorterminaldweller <thabogre@gmail.com>2022-04-21 21:00:24 +0000
committerterminaldweller <thabogre@gmail.com>2022-04-21 21:00:24 +0000
commit8d4062dc8815844ab5db359a68ea32eb2238ce2e (patch)
treefd45b78424a2b30334b4450d2ac2dea75a4a88a5
parentnow its faster (diff)
downloadkaminokumo-8d4062dc8815844ab5db359a68ea32eb2238ce2e.tar.gz
kaminokumo-8d4062dc8815844ab5db359a68ea32eb2238ce2e.zip
changed >>> to > for dmenu -D
-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)