diff --git a/main.py b/main.py index 06ccd7f..91b7ab0 100644 --- a/main.py +++ b/main.py @@ -58,7 +58,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"\n{entry.title}\n\n{entry.link}\n\n{TAG1}\s{TAG2}\s{TAG3}" + status = f"\n{entry.title}\n\n{entry.link}\n\n{TAG1} {TAG2} {TAG3}" # Post the status to Mastodon mastodon.status_post(status, visibility=TOOT_VISIBILITY)