From 90ad4737548756053a1e986295fb5c98d0caa23a Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sun, 27 Dec 2020 12:40:56 -0800 Subject: [PATCH] Drop quotation marks from around puzzle name This is already being formatted as a link, so we don't need quoation marks as well. --- turbot/interaction.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/turbot/interaction.py b/turbot/interaction.py index 94e8310..a929ac5 100644 --- a/turbot/interaction.py +++ b/turbot/interaction.py @@ -460,7 +460,7 @@ def solved(turb, body, args): hunt = find_hunt_for_hunt_id(turb, puzzle['hunt_id']) slack_send_message( turb.slack_client, hunt['channel_id'], - "Puzzle '<{}|{}>' has been solved!".format( + "Puzzle <{}|{}> has been solved!".format( puzzle['channel_url'], puzzle['name']) ) -- 2.43.0