From 6eda2685576489b68b74919996e30e58bf3d8e59 Mon Sep 17 00:00:00 2001 From: Amit Serper Date: Mon, 4 Dec 2023 21:07:16 -0500 Subject: [PATCH] changed post text --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 6b52c76..7c1bdb2 100644 --- a/main.py +++ b/main.py @@ -55,7 +55,7 @@ def check_and_post_new_items(): if entry_url not in processed_entries: print(f"Found a new RSS item: {entry.title}") # Create a Mastodon status - status = f"New RSS item:\n{entry.title}\n\n{entry.link}" + status = f"\n{entry.title}\n\n{entry.link}" # Post the status to Mastodon mastodon.status_post(status)