|
@@ -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 = {
|