Browse Source

[commands] Correct ExtensionNotFound error message

Co-authored-by: Danny <[email protected]>
pull/9604/merge
Soheab 2 months ago
committed by GitHub
parent
commit
743ef27dd7
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      discord/ext/commands/errors.py

2
discord/ext/commands/errors.py

@ -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)

Loading…
Cancel
Save