From 3b26fda9e774e4cc41d7f584b700940a9203e62f Mon Sep 17 00:00:00 2001 From: mihalin Date: Thu, 17 Mar 2022 08:08:50 +0300 Subject: [PATCH] fix for prev --- olgram/commands/menu.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/olgram/commands/menu.py b/olgram/commands/menu.py index a491f76..2fa2991 100644 --- a/olgram/commands/menu.py +++ b/olgram/commands/menu.py @@ -170,8 +170,8 @@ async def send_bot_settings_menu(bot: Bot, call: types.CallbackQuery): thread_turn = "включены" if bot.enable_threads else "выключены" info_turn = "включена" if bot.enable_additional_info else "выключена" text = dedent(f""" - Потоки сообщений: {thread_turn}\n - Дополнительная информация: {info_turn}\n + Потоки сообщений: {thread_turn} + Дополнительная информация: {info_turn} """) await edit_or_create(call, text, reply_markup=keyboard, parse_mode="HTML")