txlyre 1 жил өмнө
parent
commit
1de38aba52
1 өөрчлөгдсөн 7 нэмэгдсэн , 7 устгасан
  1. 7 7
      commands.py

+ 7 - 7
commands.py

@@ -434,23 +434,23 @@ async def sylvy_handler(bot, event, command):
 
       return
 
-  if result.status != 'SUCCESS':
-     await event.reply(f'Ошибка исполнения:\n```{result.stdout}```')
+  if result['status'] != 'SUCCESS':
+     await event.reply(f'Ошибка исполнения:\n```{result["data"]["stdout"]}```')
 
      return
 
   text = ''
 
-  if result.stdout:
-    text += result.stdout
+  if result['data']['stdout']:
+    text += result['data']['stdout']
     text += '\n'
 
-  text += result.output
+  text += result['data']['output']
 
-  if result.plots:
+  if result['data']['plits']:
     plots = []
 
-    for plot in result.plots:
+    for plot in result['data']['plots']:
       buffer = BytesIO()
 
       svg2png(