From f974acca921f9ed1379351f9eb3338f4c4919ef7 Mon Sep 17 00:00:00 2001 From: Phxntxm Date: Sat, 6 Aug 2016 10:25:38 -0500 Subject: [PATCH] Added an extra newline to the printing of the queue --- cogs/playlist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/playlist.py b/cogs/playlist.py index 66af83f..3c25f3e 100644 --- a/cogs/playlist.py +++ b/cogs/playlist.py @@ -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)