Skip to content

Commit a574782

Browse files
authored
Merge pull request #108 from nerdguyahmad/patch-1
Improve message for `ExtensionNotFound`
2 parents f261b84 + ba46224 commit a574782

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

discord/errors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,5 +355,5 @@ class ExtensionNotFound(ExtensionError):
355355
The extension that had the error.
356356
"""
357357
def __init__(self, name: str) -> None:
358-
msg = f'Extension {name!r} could not be loaded.'
358+
msg = f'Extension {name!r} could not be found.'
359359
super().__init__(msg, name=name)

0 commit comments

Comments
 (0)