mirror of
https://github.com/zoriya/Nemo.git
synced 2025-12-06 02:46:10 +00:00
Adding ``` for traceback formating
This commit is contained in:
4
nemo.py
4
nemo.py
@@ -32,7 +32,7 @@ class Nemo(discord.Client):
|
|||||||
try:
|
try:
|
||||||
await f(args=cmd[1::], message=message, guild=message.guild, channel=message.channel, member=message.author)
|
await f(args=cmd[1::], message=message, guild=message.guild, channel=message.channel, member=message.author)
|
||||||
except Exception:
|
except Exception:
|
||||||
await message.channel.send(f"Fatal error: {traceback.format_exc()}")
|
await message.channel.send(f"Fatal error: ```{traceback.format_exc()}```")
|
||||||
raise
|
raise
|
||||||
|
|
||||||
def command(self, cmd):
|
def command(self, cmd):
|
||||||
@@ -59,7 +59,7 @@ class Nemo(discord.Client):
|
|||||||
guild=reaction.message.guild,
|
guild=reaction.message.guild,
|
||||||
channel=reaction.message.channel)
|
channel=reaction.message.channel)
|
||||||
except Exception:
|
except Exception:
|
||||||
await reaction.message.channel.send(f"Fatal error: {traceback.format_exc()}")
|
await reaction.message.channel.send(f"Fatal error: ```{traceback.format_exc()}```")
|
||||||
raise
|
raise
|
||||||
|
|
||||||
async def on_raw_reaction_add(self, payload: discord.RawReactionActionEvent):
|
async def on_raw_reaction_add(self, payload: discord.RawReactionActionEvent):
|
||||||
|
|||||||
Reference in New Issue
Block a user