From 901b1bc8f39fd15d652dd5cb44b22374dcb46689 Mon Sep 17 00:00:00 2001 From: Kamal Curi Date: Sat, 22 Jul 2023 13:43:28 -0300 Subject: [PATCH] FIX: whoops, wrong variable --- utils/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/commands.py b/utils/commands.py index 8ee2d26..e3eecb7 100644 --- a/utils/commands.py +++ b/utils/commands.py @@ -151,7 +151,7 @@ async def random_quote(bot: object) -> str: content = f'{chosen_one.quote}\n`By: {chosen_one.user}`' else: content = f'{chosen_one.quote}\n`By: {chosen_one.user} and grabbed by {chosen_one.grabber}`' - return await bot.send(quote_content) + return await bot.send(content) except Exception as ex: return await bot.send(ex)