From ced656b4ccd7b54f136add088d9b919468015915 Mon Sep 17 00:00:00 2001 From: Jakob Cornell Date: Tue, 27 Sep 2022 21:31:53 -0500 Subject: [PATCH] Improve incorrect strike report format --- strikebot/src/strikebot/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strikebot/src/strikebot/__init__.py b/strikebot/src/strikebot/__init__.py index abe6065..77be977 100644 --- a/strikebot/src/strikebot/__init__.py +++ b/strikebot/src/strikebot/__init__.py @@ -80,7 +80,7 @@ def _format_update_ref(update: _Update, thread_id: str) -> str: def _format_bad_strike_alert(update: _Update, thread_id: str) -> str: - return _format_update_ref(update, thread_id) + " was incorrectly stricken." + return "_incorrectly stricken:_ " + _format_update_ref(update, thread_id) def _format_curr_count(last_valid: Optional[_Update]) -> str: -- 2.30.2