diff options
author | terminaldweller <thabogre@gmail.com> | 2022-04-21 21:00:24 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2022-04-21 21:00:24 +0000 |
commit | 8d4062dc8815844ab5db359a68ea32eb2238ce2e (patch) | |
tree | fd45b78424a2b30334b4450d2ac2dea75a4a88a5 | |
parent | now its faster (diff) | |
download | kaminokumo-8d4062dc8815844ab5db359a68ea32eb2238ce2e.tar.gz kaminokumo-8d4062dc8815844ab5db359a68ea32eb2238ce2e.zip |
changed >>> to > for dmenu -D
Diffstat (limited to '')
-rwxr-xr-x | kaminokumo | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |