From 7cceddb3df169c3bbc598329c94d924d822de3b1 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 9 Mar 2024 17:35:14 +0100 Subject: [PATCH] Improve wording on /health message --- freqtrade/rpc/telegram.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/freqtrade/rpc/telegram.py b/freqtrade/rpc/telegram.py index 2d59e1f16..f99149c01 100644 --- a/freqtrade/rpc/telegram.py +++ b/freqtrade/rpc/telegram.py @@ -1705,8 +1705,8 @@ class Telegram(RPCHandler): """ health = self._rpc.health() message = f"Last process: `{health['last_process_loc']}`\n" - message += f"Initial bot Start: `{health['bot_start_loc']}`\n" - message += f"Current bot Start: `{health['bot_startup_loc']}`" + message += f"Initial bot start: `{health['bot_start_loc']}`\n" + message += f"Last bot restart: `{health['bot_startup_loc']}`" await self._send_msg(message) @authorized_only