From 743ef27dd7eb58464fe05bf2657c7694982d7f7b Mon Sep 17 00:00:00 2001 From: Soheab <33902984+Soheab@users.noreply.github.com> Date: Sun, 19 Jan 2025 05:31:02 +0100 Subject: [PATCH] [commands] Correct ExtensionNotFound error message Co-authored-by: Danny <1695103+Rapptz@users.noreply.github.com> --- discord/ext/commands/errors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/ext/commands/errors.py b/discord/ext/commands/errors.py index 0c3cfa0c4..f81d54b4d 100644 --- a/discord/ext/commands/errors.py +++ b/discord/ext/commands/errors.py @@ -1080,7 +1080,7 @@ class ExtensionNotFound(ExtensionError): """ def __init__(self, name: str) -> None: - msg = f'Extension {name!r} could not be loaded.' + msg = f'Extension {name!r} could not be loaded or found.' super().__init__(msg, name=name)