[commands] Correct ExtensionNotFound error message

Co-authored-by: Danny <1695103+Rapptz@users.noreply.github.com>
This commit is contained in:
Soheab
2025-01-18 23:31:02 -05:00
committed by GitHub
co-authored by Danny
parent b1b736971a
commit 743ef27dd7
+1 -1
View File
@@ -1080,7 +1080,7 @@ class ExtensionNotFound(ExtensionError):
""" """
def __init__(self, name: str) -> None: 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) super().__init__(msg, name=name)