|
@@ -532,7 +532,9 @@ async def run_handler(bot, event, command):
|
|
|
return
|
|
|
|
|
|
try:
|
|
|
- await event.reply(await run(command.args_string))
|
|
|
+ _, _, result = await run(command.args_string)
|
|
|
+
|
|
|
+ await event.reply(result)
|
|
|
except (ValueError, MessageEmptyError):
|
|
|
await event.reply("<Telegram не смог декодировать текст сообщения>")
|
|
|
|