From a203d712cccd60a243bed7931b8a55c08d62170e Mon Sep 17 00:00:00 2001 From: SantaSpeen Date: Mon, 12 Sep 2022 17:39:02 +0300 Subject: [PATCH] Fix /help --- src/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.py b/src/main.py index 8aa7f67..1d01006 100644 --- a/src/main.py +++ b/src/main.py @@ -73,7 +73,7 @@ async def start(msg: types.Message): @dp.message_handler(commands=["help"], chat_type=ChatType.PRIVATE) async def start(msg: types.Message): log.info(f"New message from {msg.from_user.id}(@{msg.from_user.username}) in {msg.chat.id}: '{msg.text}'") - await msg.reply("Команды:\n`/calcnet` - посчитать сеть\n`/calcsub` - разбить на подсети") + await msg.reply("Команды:\n/calcnet - посчитать сеть\n/calcsub - разбить на подсети") @dp.message_handler(commands=["calcnet"], chat_type=ChatType.PRIVATE)