From 9731c86a9028a101fb2e23caa0dc724b7c933e0a Mon Sep 17 00:00:00 2001 From: Rishat-F <66554797+Rishat-F@users.noreply.github.com> Date: Sun, 10 Mar 2024 21:49:51 +0300 Subject: [PATCH] Fixed error message syntax Co-authored-by: Alex Root Junior --- aiogram/fsm/storage/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiogram/fsm/storage/base.py b/aiogram/fsm/storage/base.py index 1db4d546..51c9f002 100644 --- a/aiogram/fsm/storage/base.py +++ b/aiogram/fsm/storage/base.py @@ -73,7 +73,7 @@ class DefaultKeyBuilder(KeyBuilder): parts.append(key.destiny) elif key.destiny != DEFAULT_DESTINY: raise ValueError( - "Default key builder is not configured to use key destiny other the default.\n" + "Default key builder is not configured to use key destiny other than the default.\n" "\n" "Probably, you should set `with_destiny=True` in for DefaultKeyBuilder." )