Commit b61a734d authored by Ivan Mazhukin's avatar Ivan Mazhukin

Fix / command's description

parent f321e8f1
...@@ -597,9 +597,9 @@ async def main(): ...@@ -597,9 +597,9 @@ async def main():
"""Запуск бота.""" """Запуск бота."""
logger.info("bot is running") logger.info("bot is running")
await bot.set_my_commands([ await bot.set_my_commands([
BotCommand(command="/spam", description="Оповестить о спаме уполномоченных людей"), BotCommand(command="/spam", description="Оповестить о спаме модераторов"),
BotCommand(command="/unban", description="Разбанить пользователя (доступно модераторам)"), BotCommand(command="/unban", description="Разбанить пользователя (доступно модераторам)"),
BotCommand(command="/ban", description="Разбанить пользователя (доступно модераторам)") BotCommand(command="/ban", description="Забанить пользователя (доступно модераторам)")
]) ])
await dp.start_polling(bot) await dp.start_polling(bot)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment