oh my god this is the third push
This commit is contained in:
blank X 2020-12-23 14:27:03 +07:00
parent 385a66c6ec
commit dc67e2155a
1 changed files with 2 additions and 2 deletions

View File

@ -20,8 +20,8 @@ async def shell(client, message):
stdout, stderr = await process.communicate(stdin.encode() if stdin else None)
returncode = process.returncode
text = f'<b>Exit Code:</b> <code>{returncode}</code>\n'
stdout = stdout.decode().replace('\r', '').rstrip('\n')
stderr = stderr.decode().replace('\r', '').rstrip('\n')
stdout = stdout.decode().replace('\r', '').strip('\n').rstrip()
stderr = stderr.decode().replace('\r', '').strip('\n').rstrip()
if stderr:
text += f'<code>{html.escape(stderr)}</code>\n'
if stdout: