From f524d547a80462c1e209de182c398698c165395f Mon Sep 17 00:00:00 2001 From: Adriene Hutchins Date: Wed, 19 Feb 2020 20:45:48 -0500 Subject: [PATCH] fixed thing i forgot --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index b5fb70b..4311087 100644 --- a/main.py +++ b/main.py @@ -65,7 +65,7 @@ async def search(ctx, *, query: str): print(f"\n\nNEW CALL: {ctx.author} from {ctx.guild}.\n") async with ctx.typing(): - msg = search_logic(query) + msg = await search_logic(query) await ctx.send(msg) @bot.command(aliases=['exit', 'reboot'])