Skip to content

Commit 743ef27

Browse files
SoheabRapptz
andauthored
[commands] Correct ExtensionNotFound error message
Co-authored-by: Danny <[email protected]>
1 parent b1b7369 commit 743ef27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

discord/ext/commands/errors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1080,7 +1080,7 @@ class ExtensionNotFound(ExtensionError):
10801080
"""
10811081

10821082
def __init__(self, name: str) -> None:
1083-
msg = f'Extension {name!r} could not be loaded.'
1083+
msg = f'Extension {name!r} could not be loaded or found.'
10841084
super().__init__(msg, name=name)
10851085

10861086

0 commit comments

Comments
 (0)