]> git.cworth.org Git - turbot/commitdiff
Drop quotation marks from around puzzle name
authorCarl Worth <cworth@cworth.org>
Sun, 27 Dec 2020 20:40:56 +0000 (12:40 -0800)
committerCarl Worth <cworth@cworth.org>
Sun, 27 Dec 2020 20:40:56 +0000 (12:40 -0800)
This is already being formatted as a link, so we don't need quoation
marks as well.

turbot/interaction.py

index 94e8310ebd5ee03838cbf3a7f2b4496846a5bbe8..a929ac553fef804c6312dcb10dc107f58fd386d3 100644 (file)
@@ -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'])
     )