summaryrefslogtreecommitdiff
path: root/ATRI
diff options
context:
space:
mode:
Diffstat (limited to 'ATRI')
-rw-r--r--ATRI/exceptions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ATRI/exceptions.py b/ATRI/exceptions.py
index bc09ce6..e4d18c7 100644
--- a/ATRI/exceptions.py
+++ b/ATRI/exceptions.py
@@ -111,7 +111,7 @@ async def _(bot: Bot, event, matcher: Matcher, exception: Optional[Exception]):
return
try:
- prompt = exception.__class__.__name__
+ prompt = exception.__class__.__name__
track_id = _save_error(prompt, format_exc())
log.warning(f"Ignore Exception: {prompt}")
except BaseBotException as err: