From 8d4062dc8815844ab5db359a68ea32eb2238ce2e Mon Sep 17 00:00:00 2001 From: terminaldweller Date: Fri, 22 Apr 2022 01:30:24 +0430 Subject: changed >>> to > for dmenu -D --- kaminokumo | 4 ++-- 1 file 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) -- cgit v1.2.3