Skip to content

Commit

Permalink
[commands] Correct ExtensionNotFound error message
Browse files Browse the repository at this point in the history
Co-authored-by: Danny <[email protected]>
  • Loading branch information
Soheab and Rapptz authored Jan 19, 2025
1 parent b1b7369 commit 743ef27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion discord/ext/commands/errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down

0 comments on commit 743ef27

Please sign in to comment.