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

Removed extra ]

This commit is contained in:
Phxntxm 2016-08-06 09:50:23 -05:00
parent d6fd844f92
commit 07499611f3

View file

@ -244,7 +244,7 @@ class Music:
if not found:
await self.bot.say("You are not in the queue!")
return
await self.bot.say("ETA till your next play is: {0[0]}m {0[1]}s]".format(divmod(round(count, 0), 60)))
await self.bot.say("ETA till your next play is: {0[0]}m {0[1]}s".format(divmod(round(count, 0), 60)))
@commands.command(pass_context=True, no_pm=True)
@checks.customPermsOrRole(send_messages=True)