From c879dfedbffa352cec3315098696f28d64ec3d4a Mon Sep 17 00:00:00 2001 From: Oleg A Date: Sat, 24 Oct 2020 14:29:39 +0300 Subject: [PATCH] MessageToReplyNotFound new text --- aiogram/utils/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiogram/utils/exceptions.py b/aiogram/utils/exceptions.py index 58e757e9..fe2cc144 100644 --- a/aiogram/utils/exceptions.py +++ b/aiogram/utils/exceptions.py @@ -196,7 +196,7 @@ class MessageToReplyNotFound(MessageError): """ Will be raised when you try to reply to very old or deleted or unknown message. """ - match = 'message to reply not found' + match = 'Reply message not found' class MessageIdentifierNotSpecified(MessageError):