Skip to content

Commit

Permalink
Improve message for ExtensionNotFound
Browse files Browse the repository at this point in the history
  • Loading branch information
izxxr authored Sep 5, 2021
1 parent f261b84 commit ba46224
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion discord/errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -355,5 +355,5 @@ class ExtensionNotFound(ExtensionError):
The extension that had the error.
"""
def __init__(self, name: str) -> None:
msg = f'Extension {name!r} could not be loaded.'
msg = f'Extension {name!r} could not be found.'
super().__init__(msg, name=name)

0 comments on commit ba46224

Please sign in to comment.