From 55531ad894d1272d85ee90201723106791163e7d Mon Sep 17 00:00:00 2001 From: Twentysix Date: Sat, 14 May 2016 03:10:03 +0200 Subject: [PATCH] !song fix --- cogs/audio.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/cogs/audio.py b/cogs/audio.py index 3e615a160..832a2c54d 100644 --- a/cogs/audio.py +++ b/cogs/audio.py @@ -1359,9 +1359,8 @@ class Audio: song = self.queue[server.id]["NOW_PLAYING"] if song: msg = ("\n**Title:** {}\n**Author:** {}\n**Uploader:** {}\n" - "**Views:** {}\n\n<{}>".format( - song.title, song.creator, song.view_count, - song.webpage_url)) + "**Views:** {}\n\n<{}>".format(song.title, song.creator, + song.uploader, song.view_count, song.webpage_url)) await self.bot.say(msg.replace("**Author:** None\n", "")) else: await self.bot.say("I don't know what this song is either.")