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: