FIX function name, and bo send method.

pull/3/head
kevincaires 4 years ago
parent ba6a328c1c
commit 7a3306ee17

@ -52,7 +52,7 @@ async def random_quote(bot: object) -> str:
return await bot.send(ex) return await bot.send(ex)
@client.command(aliases=['qstack']) @client.command(aliases=['qstack'])
async def random_quote(bot: object) -> str: async def queue_stack(bot: object) -> str:
""" """
Displays the 5 quote history stack Displays the 5 quote history stack
""" """
@ -62,5 +62,5 @@ async def random_quote(bot: object) -> str:
rmessage = "A list of the 5 latest message IDs follows: " + id_stack rmessage = "A list of the 5 latest message IDs follows: " + id_stack
return await bot.sent(rmessage) return await bot.send(rmessage)

Loading…
Cancel
Save