From 107741dfac3e31fa78bb7b49c5a066e36d4a9e7b Mon Sep 17 00:00:00 2001 From: Myned Date: Wed, 8 Nov 2017 00:11:10 -0500 Subject: [PATCH] Removed underlining of guild for aesthetics --- src/main/run.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/run.py b/src/main/run.py index f487659..fcbe5ae 100644 --- a/src/main/run.py +++ b/src/main/run.py @@ -96,8 +96,8 @@ async def on_command_error(ctx, error): print('\n! ! ! ! ! ! ! ! ! ! ! !\nC O M M A N D E R R O R : {}\n! ! ! ! ! ! ! ! ! ! ! !\n'.format( error), file=sys.stderr) tb.print_exception(type(error), error, error.__traceback__, file=sys.stderr) - await bot.get_user(u.config['owner_id']).send('**COMMAND ERROR** \N{WARNING SIGN} `{}` from *@{}* in __{}__\n```\n{}```'.format(ctx.message.content, ctx.author.name, ctx.guild.name, error)) - await bot.get_channel(u.config['info_channel']).send('**COMMAND ERROR** \N{WARNING SIGN} `{}` from *@{}* in __{}__\n```\n{}```'.format(ctx.message.content, ctx.author.name, ctx.guild.name, error)) + await bot.get_user(u.config['owner_id']).send('**COMMAND ERROR** \N{WARNING SIGN} `{}` from *@{}* in {}\n```\n{}```'.format(ctx.message.content, ctx.author.name, ctx.guild.name, error)) + await bot.get_channel(u.config['info_channel']).send('**COMMAND ERROR** \N{WARNING SIGN} `{}` from *@{}* in {}\n```\n{}```'.format(ctx.message.content, ctx.author.name, ctx.guild.name, error)) await exc.send_error(ctx, error) await ctx.message.add_reaction('\N{WARNING SIGN}') # u.notify('C O M M A N D E R R O R')