From: Carl Worth Date: Sat, 9 Jan 2021 11:27:27 +0000 (-0800) Subject: Put solution after puzzle name in /hunt reports X-Git-Url: https://git.cworth.org/git?p=turbot;a=commitdiff_plain;h=32698832814a2c60498a1fc1f8ed1d28b69dd41a 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. --- 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 )