1
0
Fork 0
mirror of https://github.com/myned/modufur.git synced 2024-11-01 21:02:38 +00:00

Added newline to exec/eval command output

This commit is contained in:
Myned 2017-11-19 23:08:59 -05:00
parent c7889c2c94
commit a5c334edfb

View file

@ -194,10 +194,10 @@ class Tools:
try: try:
with io.StringIO() as buff, redirect_stdout(buff): with io.StringIO() as buff, redirect_stdout(buff):
exec(exe) exec(exe)
await self.generate(ctx, exe, buff.getvalue()) await self.generate(ctx, exe, f'\n{buff.getvalue()}')
except Exception: except Exception:
await ctx.send('```\n{}```'.format(tb.format_exc())) await self.generate(ctx, exe, f'\n{tb.format_exc()}')
@commands.command(name=',evaluate', aliases=[',eval'], hidden=True) @commands.command(name=',evaluate', aliases=[',eval'], hidden=True)
@commands.is_owner() @commands.is_owner()
@ -206,10 +206,10 @@ class Tools:
try: try:
with io.StringIO() as buff, redirect_stdout(buff): with io.StringIO() as buff, redirect_stdout(buff):
eval(evl) eval(evl)
await self.generate(ctx, evl, buff.getvalue()) await self.generate(ctx, evl, f'\n{buff.getvalue()}')
except Exception: except Exception:
await ctx.send('```\n{}```'.format(tb.format_exc())) await self.generate(ctx, evl, f'\n{tb.format_exc()}')
@commands.group(aliases=[',db'], hidden=True) @commands.group(aliases=[',db'], hidden=True)
@commands.is_owner() @commands.is_owner()