From 32698832814a2c60498a1fc1f8ed1d28b69dd41a Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sat, 9 Jan 2021 03:27:27 -0800 Subject: [PATCH] Put solution after puzzle name in /hunt reports The concept here is to keep the puzzle names aligned to make it easier to find a puzzle of interest in the sorted list. --- turbot/puzzle.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/turbot/puzzle.py b/turbot/puzzle.py index 037dd5e..b86a529 100644 --- a/turbot/puzzle.py +++ b/turbot/puzzle.py @@ -95,10 +95,11 @@ def puzzle_blocks(puzzle, include_rounds=False): ", ".join(rounds) ) - puzzle_text = "{}{} {}<{}|{}> ({}){}{}".format( - status_emoji, solution_str, + puzzle_text = "{} {}<{}|{}> {} ({}){}{}".format( + status_emoji, meta_str, channel_url(channel_id), name, + solution_str, ', '.join(links), rounds_str, state_str ) -- 2.43.0