FIX qstack command

pull/3/head
kevin.caires 3 years ago
parent 8e0dc3da17
commit 42a227bf1f

@ -67,10 +67,6 @@ async def queue_stack(bot: object) -> str:
""" """
Displays the 5 quote history stack Displays the 5 quote history stack
""" """
id_stack = "" return await bot.send(
for qid in quote_id_stack: f'A list of the 5 latest message IDs follows: `{",".join(str(q) for q in quote_id_stack)}`'
id_stack = id_stack + qid )
rmessage = "A list of the 5 latest message IDs follows: " + id_stack
return await bot.send(rmessage)

Loading…
Cancel
Save