From 05a6a4baa6721f5ae235dabdd92f3d86961a3187 Mon Sep 17 00:00:00 2001 From: Midgard Date: Thu, 10 Dec 2020 12:23:14 +0100 Subject: [PATCH] Use green number for bot replies to avoid confusion --- read_mattermost.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/read_mattermost.py b/read_mattermost.py index a5bf68f..99fcef4 100755 --- a/read_mattermost.py +++ b/read_mattermost.py @@ -234,7 +234,7 @@ def get_posts_for_channel(mmapi, channel_id, since, **kwargs): CONFIRMATION_EMOJI_NAMES = [ - *(f"num{i}" for i in range(1, 99 + 1)), + *(f"greennum{i}" for i in range(1, 99 + 1)), "heavy_plus_sign" ] def confirmation_emoji_name(count):