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

Added an extra newline to the printing of the queue

This commit is contained in:
Phxntxm 2016-08-06 10:25:38 -05:00
parent 07499611f3
commit f974acca92

View file

@ -257,7 +257,7 @@ class Music:
if len(state.songs._queue) == 0:
fmt = "Nothing currently in the queue"
else:
fmt = "\n".join(str(x) for x in state.songs._queue)
fmt = "\n\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)