From c7c34060b8469fcb6c84ad8d850896ec2b0e7b88 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Mon, 11 Jan 2021 18:06:10 -0800 Subject: [PATCH] Use a double dash separator for the m in the channel name of metapuzzles The double dash is what will make the meta puzzles sort before all non-metapuzzled. --- turbot/puzzle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/turbot/puzzle.py b/turbot/puzzle.py index 1d1fda8..abfe60b 100644 --- a/turbot/puzzle.py +++ b/turbot/puzzle.py @@ -283,7 +283,7 @@ def puzzle_channel_name(puzzle): meta = '' if puzzle.get('type', 'plain') == 'meta': - meta = '-m' + meta = '--m' # Note: We don't use puzzle['puzzle_id'] here because we're keeping # that as a persistent identifier in the database. Instead we -- 2.43.0