From efacff698d25d8e3871c367fa12a46a4ba0781d5 Mon Sep 17 00:00:00 2001 From: StarHeart Date: Thu, 11 Mar 2021 10:55:18 +0800 Subject: [PATCH] :bug: typo --- nonebot/plugins/single_session.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nonebot/plugins/single_session.py b/nonebot/plugins/single_session.py index 30fdc496..42df70d7 100644 --- a/nonebot/plugins/single_session.py +++ b/nonebot/plugins/single_session.py @@ -17,7 +17,7 @@ async def _(matcher: Matcher, bot: Bot, event: Event, state: T_State): current_event_id = id(event) event_id = _running_matcher.get(session_id, None) if event_id and event_id != current_event_id: - raise IgnoredException("Annother matcher running") + raise IgnoredException("Another matcher running") _running_matcher[session_id] = current_event_id