From 3357e5a9f04513a7f62a532ba02474423e306611 Mon Sep 17 00:00:00 2001 From: phxntxm Date: Fri, 5 Aug 2016 19:55:44 -0500 Subject: [PATCH] Corrected error when printing the queue --- cogs/playlist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/playlist.py b/cogs/playlist.py index 7566263..e158800 100644 --- a/cogs/playlist.py +++ b/cogs/playlist.py @@ -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)