[CustomCom] Add missing await (#4108)

This commit is contained in:
Ryan
2020-07-23 17:37:31 -04:00
committed by jack1142
parent 9a6f78e62e
commit e36d1f143d

View File

@@ -464,7 +464,7 @@ class CustomCommands(commands.Cog):
try:
cmd = await self.commandobj.get_full(ctx.message, command_name)
except NotFound:
ctx.send(_("I could not not find that custom command."))
await ctx.send(_("I could not not find that custom command."))
return
responses = cmd["response"]