From 220de034a0df2e18a23148c55c10c16855616e51 Mon Sep 17 00:00:00 2001 From: Kat Inskip Date: Fri, 28 Feb 2025 00:41:38 -0800 Subject: [PATCH] fix: erroneous i --- konawall/sources/e621.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/konawall/sources/e621.py b/konawall/sources/e621.py index 41f66e2..46523c7 100644 --- a/konawall/sources/e621.py +++ b/konawall/sources/e621.py @@ -38,7 +38,7 @@ def request_posts(count: int, tags: list, config) -> list: kv_print("Rating", post["rating"]) kv_print("Resolution", f"{post['file']['width']}x{post['file']['height']}") kv_print("Tags", post["tags"]) - kv_print("URL", post["file"]["url"])i + kv_print("URL", post["file"]["url"]) # Append the URL to the list post["show_url"] = f"https://e621.net/posts/{post['id']}" posts.append(post)