Browse Source

[commands] Correct ExtensionNotFound error message

Co-authored-by: Danny <[email protected]>
pull/10109/head
Soheab 3 months ago
committed by dolfies
parent
commit
3a1d0e708a
  1. 2
      discord/ext/commands/errors.py

2
discord/ext/commands/errors.py

@ -1084,7 +1084,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