Browse Source

skill issue

txlyre 1 năm trước cách đây
mục cha
commit
68607bb1d6
1 tập tin đã thay đổi với 6 bổ sung6 xóa
  1. 6 6
      commands.py

+ 6 - 6
commands.py

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