From 70625e5f1b3891873f4633e51a4e9fbc2d665416 Mon Sep 17 00:00:00 2001 From: lluni Date: Wed, 2 Aug 2023 00:32:48 +0200 Subject: [PATCH] Changed wording --- cleanup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cleanup.py b/cleanup.py index 8e5177d..851b263 100644 --- a/cleanup.py +++ b/cleanup.py @@ -58,7 +58,7 @@ def cleanup(limit: int = 40, id: int | None = None): for submission in last_posts: # if post has no favorites, boosts or replies, delete it if submission["favourites_count"] == 0 and submission["reblogs_count"] == 0 and submission["replies_count"] == 0: - print("Trying to delete post:", submission["url"]) + print("Deleting post:", submission["url"]) try: mastodon.status_delete(submission["id"]) except MastodonRatelimitError: