From: Carl Worth Date: Sat, 9 Jan 2021 11:22:25 +0000 (-0800) Subject: Add a divider between rounds in the /hunt output X-Git-Url: https://git.cworth.org/git?p=turbot;a=commitdiff_plain;h=2b1b344f4734089e591acac75d8c2d2f1bc70f3b;hp=677513999c950577c78726249ac86eade3bd3973 Add a divider between rounds in the /hunt output Just to make it a little easier to see the grouping of rounds. --- diff --git a/turbot/hunt.py b/turbot/hunt.py index edc8b87..1c2ee0e 100644 --- a/turbot/hunt.py +++ b/turbot/hunt.py @@ -120,6 +120,7 @@ def hunt_blocks(turb, hunt, puzzle_status='unsolved', search_terms=[], blocks += round_blocks(round, puzzles, omit_header=True) else: blocks += round_blocks(round, puzzles) + blocks.append(divider_block()) # Also blocks for any puzzles not in any round stray_puzzles = [puzzle for puzzle in puzzles if 'rounds' not in puzzle]