txlyre 1 year ago
parent
commit
28ee8747a9
1 changed files with 4 additions and 1 deletions
  1. 4 1
      commands.py

+ 4 - 1
commands.py

@@ -454,7 +454,10 @@ async def run_handler(bot, event, command):
   if not text:
     text = '<пусто>'
 
-  await event.reply(f'```\n{text}```')
+  try:
+    await event.reply(f'```\n{text}```')
+  except ValueError:
+    await event.reply(text, parse_mode=None)
 
 async def sylvy_handler(bot, event, command):
   if command.argc < 1: