From 7d5b51bb6e0ab52b6fbd9353e7b977f178175fda Mon Sep 17 00:00:00 2001 From: Phxntxm Date: Sat, 29 Oct 2016 16:00:53 -0500 Subject: [PATCH] Added the progress and length to the message for the progress --- cogs/playlist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/playlist.py b/cogs/playlist.py index 8a4f868..91b2117 100644 --- a/cogs/playlist.py +++ b/cogs/playlist.py @@ -239,7 +239,7 @@ class Music: # Otherwise just format this nicely progress = divmod(round(progress, 0), 60) length = divmod(round(length, 0), 60) - fmt = "Current song progress: {0[0]}m {0[1]}s/{1[0]}m {1[1]}s" + fmt = "Current song progress: {0[0]}m {0[1]}s/{1[0]}m {1[1]}s".format(progress, length) await self.bot.say(fmt)