From: Carl Worth Date: Tue, 5 Jan 2021 04:43:15 +0000 (-0800) Subject: Correct typo in hunt description verbiage X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=76fd510ddc8512b4653c5571795b5dba57695ae0;p=turbot Correct typo in hunt description verbiage Thanks to Ken for pointing out this misspelling. --- 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))