From 22bf924c2afa92104795abfb800198b68f4777e3 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sat, 8 Jan 2022 00:26:34 -0800 Subject: [PATCH] Fix a typo in the message announcing a puzzle solution This typo was visible to users and annoying ungrammatical. --- turbot/interaction.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/turbot/interaction.py b/turbot/interaction.py index b0a88a0..b2d8317 100644 --- a/turbot/interaction.py +++ b/turbot/interaction.py @@ -1196,7 +1196,7 @@ def solved(turb, body, args): # Report the solution to the puzzle's channel slack_send_message( turb.slack_client, channel_id, - "Puzzle mark solved by <@{}>: `{}`".format(user_id, args)) + "Puzzle marked solved by <@{}>: `{}`".format(user_id, args)) # Also report the solution to the hunt channel hunt = find_hunt_for_hunt_id(turb, puzzle['hunt_id']) -- 2.43.0