From 6ab007bc1d918bdebdad15febf20a0852f79b67f Mon Sep 17 00:00:00 2001 From: Ryan Date: Thu, 23 Jul 2020 17:37:31 -0400 Subject: [PATCH] [CustomCom] Add missing await (#4108) --- redbot/cogs/customcom/customcom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redbot/cogs/customcom/customcom.py b/redbot/cogs/customcom/customcom.py index 6f517d8d1..7b41b741c 100644 --- a/redbot/cogs/customcom/customcom.py +++ b/redbot/cogs/customcom/customcom.py @@ -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"]