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