Skip to content

Commit c6be686

Browse files
committed
Fix command not found text
1 parent 7761cd2 commit c6be686

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cogs/utility.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ async def send_error_message(self, msg): # pylint: disable=W0221
145145
embed = Embed(
146146
color=Color.red()
147147
)
148-
embed.set_footer(text=f'Command/Category "{self.remove_mentions(self.context.author.mention)}" not found.')
148+
embed.set_footer(text=f'Command/Category "{self.context.kwargs.get("command")}" not found.')
149149

150150
choices = set()
151151

0 commit comments

Comments
 (0)