From: Carl Worth Date: Sun, 27 Dec 2020 20:40:56 +0000 (-0800) Subject: Drop quotation marks from around puzzle name X-Git-Url: https://git.cworth.org/git?p=turbot;a=commitdiff_plain;h=90ad4737548756053a1e986295fb5c98d0caa23a Drop quotation marks from around puzzle name This is already being formatted as a link, so we don't need quoation marks as well. --- 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']) )