From: Carl Worth Date: Sat, 8 Jan 2022 08:26:34 +0000 (-0800) Subject: Fix a typo in the message announcing a puzzle solution X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=22bf924c2afa92104795abfb800198b68f4777e3;hp=30330f4222341fcc4f1b8ded74d66827c907037c;p=turbot Fix a typo in the message announcing a puzzle solution This typo was visible to users and annoying ungrammatical. --- 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'])