1
0
Fork 0
mirror of synced 2024-06-23 08:40:41 +12:00

Corrected error when printing the queue

This commit is contained in:
phxntxm 2016-08-05 19:55:44 -05:00
parent 796ae55ffd
commit 3357e5a9f0

View file

@ -219,7 +219,7 @@ class Music:
if not state.is_playing():
await self.bot.say('Not playing any music right now...')
return
fmt = "\n".join(x for x in state.songs._queue)
fmt = "\n".join(str(x) for x in state.songs._queue)
await self.bot.say("Current songs in the queue:```\n{}```".format(fmt))
@commands.command(pass_context=True, no_pm=True)