From c2155376ebc78e848c4d541be08144db7f1ee8ce Mon Sep 17 00:00:00 2001 From: Siphalor Date: Thu, 7 Oct 2021 12:51:07 +0200 Subject: [PATCH] Fix quote listing not being finalized --- bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.py b/bot.py index 5f3a193..5db9963 100644 --- a/bot.py +++ b/bot.py @@ -839,7 +839,7 @@ async def quote_list_slash(ctx: SlashContext, author: Optional[str] = None): for author, author_quotes in quotes.items(): coroutines.append(ctx.channel.send(embed=create_list_embed(author, author_quotes))) await asyncio.gather(*coroutines) - await ctx.send(content="") + await ctx.send(content="That was all.") else: author = author.strip().title() if author in quotes: