|
@@ -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(
|