From 874501c9efc777c3c2b1b98ef6e5c84785b7765c Mon Sep 17 00:00:00 2001 From: Kamal Curi Date: Wed, 19 Jul 2023 16:26:04 -0300 Subject: [PATCH] FIX: Wrong variable --- utils/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/commands.py b/utils/commands.py index 42135f4..bf9f10f 100644 --- a/utils/commands.py +++ b/utils/commands.py @@ -176,7 +176,7 @@ async def by_id(bot: object, _id: int=None) -> str: data = f'{quote.quote}\n`By: {quote.user}`' else: data = f'{quote.quote}\n`By: {quote.user} and grabbed by {quote.grabber}`' - return await bot.send(content) + return await bot.send(data) except Exception as ex: return await bot.send(ex)