Fix quote listing not being finalized

This commit is contained in:
2021-10-07 12:51:07 +02:00
parent 51686ff8ee
commit c2155376eb

2
bot.py
View File

@@ -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: