From 5ed24b9f42e75357e38a470c5625c47f48b52cf6 Mon Sep 17 00:00:00 2001 From: mihalin Date: Sun, 13 Mar 2022 18:12:22 +0300 Subject: [PATCH] Revert "debug info in /info command" This reverts commit 3aa878ff870f67f222cc2f0b44baf84613adec86. --- olgram/commands/info.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/olgram/commands/info.py b/olgram/commands/info.py index b578bda..330451c 100644 --- a/olgram/commands/info.py +++ b/olgram/commands/info.py @@ -4,7 +4,6 @@ from aiogram import types from aiogram.dispatcher import FSMContext -import socket from olgram.models import models from olgram.router import dp @@ -29,11 +28,8 @@ async def info(message: types.Message, state: FSMContext): income_messages = sum([bot.incoming_messages_count for bot in bots]) outgoing_messages = sum([bot.outgoing_messages_count for bot in bots]) - hostname = socket.gethostname() - await message.answer(f"Количество ботов: {bots_count}\n" f"Количество пользователей (у конструктора): {user_count}\n" f"Шаблонов ответов: {templates_count}\n" f"Входящих сообщений у всех ботов: {income_messages}\n" - f"Исходящих сообщений у всех ботов: {outgoing_messages}\n" - f"Хост: {hostname}") + f"Исходящих сообщений у всех ботов: {outgoing_messages}\n")