From 76fd510ddc8512b4653c5571795b5dba57695ae0 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Mon, 4 Jan 2021 20:43:15 -0800 Subject: [PATCH] Correct typo in hunt description verbiage Thanks to Ken for pointing out this misspelling. --- turbot/hunt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/turbot/hunt.py b/turbot/hunt.py index 6d44662..b538ea5 100644 --- a/turbot/hunt.py +++ b/turbot/hunt.py @@ -77,7 +77,7 @@ def hunt_blocks(turb, hunt, puzzle_status='unsolved'): # Also blocks for any puzzles not in any round stray_puzzles = [puzzle for puzzle in puzzles if 'rounds' not in puzzle] if len(stray_puzzles): - stray_text = "*Puzzles with no asigned round*" + stray_text = "*Puzzles with no assigned round*" blocks.append(section_block(text_block(stray_text))) for puzzle in stray_puzzles: blocks.append(puzzle_block(puzzle)) -- 2.43.0