Skip to content

Commit

Permalink
fix error text
Browse files Browse the repository at this point in the history
  • Loading branch information
z03h committed Oct 12, 2024
1 parent ee9d671 commit 57de173
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 @@ -580,7 +580,7 @@ class SoundboardSoundNotFound(BadArgument):

def __init__(self, argument: str) -> None:
self.argument: str = argument
super().__init__(f'ScheduledEvent "{argument}" not found.')
super().__init__(f'SoundboardSound "{argument}" not found.')


class BadBoolArgument(BadArgument):
Expand Down

0 comments on commit 57de173

Please sign in to comment.