From 1c4e809f84ff71cf7cf51682e759cd86076b3adb Mon Sep 17 00:00:00 2001 From: konradbeck Date: Sat, 29 Jun 2024 09:58:37 +0200 Subject: [PATCH] Update telegram.py The help command doesn't have consistent formatting. - /stop: "Description" doesn't conform to the other formatting. - Statistics header isn't on it's own line. --- 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 39137b605..990ce4d82 100644 --- a/freqtrade/rpc/telegram.py +++ b/freqtrade/rpc/telegram.py @@ -1787,7 +1787,7 @@ class Telegram(RPCHandler): "_Bot Control_\n" "------------\n" "*/start:* `Starts the trader`\n" - "*/stop:* Stops the trader\n" + "*/stop:* `Stops the trader`\n" "*/stopentry:* `Stops entering, but handles open trades gracefully` \n" "*/forceexit |all:* `Instantly exits the given trade or all trades, " "regardless of profit`\n" @@ -1820,7 +1820,7 @@ class Telegram(RPCHandler): "that represents the current market direction. If no direction is provided `" "`the currently set market direction will be output.` \n" "*/list_custom_data :* `List custom_data for Trade ID & Key combo.`\n" - "`If no Key is supplied it will list all key-value pairs found for that Trade ID.`" + "`If no Key is supplied it will list all key-value pairs found for that Trade ID.`\n" "_Statistics_\n" "------------\n" "*/status |[table]:* `Lists all open trades`\n"