Ver código fonte

skill issue x3

txlyre 1 ano atrás
pai
commit
f3230098e5
1 arquivos alterados com 10 adições e 11 exclusões
  1. 10 11
      commands.py

+ 10 - 11
commands.py

@@ -435,18 +435,10 @@ async def sylvy_handler(bot, event, command):
       return
 
   if result['status'] != 'SUCCESS':
-     await event.reply(f'Ошибка исполнения:\n```{result["stdout"]}```')
+     await event.reply(f'Ошибка исполнения!!!\n\n```{result["stdout"]}```')
 
      return
 
-  text = ''
-
-  if result['stdout']:
-    text += result['stdout']
-    text += '\n'
-
-  text += result['output']
-
   if result['plots']:
     plots = []
 
@@ -463,12 +455,19 @@ async def sylvy_handler(bot, event, command):
     await bot.send_file(
       event.peer_id,
       file=plots,
-      reply_to=event,
-      caption=text
+      reply_to=event
     )
 
     return
 
+  text = ''
+
+  if result['stdout']:
+    text += result['stdout']
+    text += '\n'
+
+  text += result['output']
+
   await event.reply(f'```{text}```')
 
 COMMANDS = {