From e28e5b60de47cb941a71ff7584872209a60ea800 Mon Sep 17 00:00:00 2001 From: turtlebasket Date: Tue, 5 May 2020 23:14:17 -0700 Subject: [PATCH] Fix formatting issues --- bot.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bot.py b/bot.py index b6b2877..6a95e8f 100644 --- a/bot.py +++ b/bot.py @@ -43,13 +43,13 @@ banning_users = [] async def status_loop(): while True: - await bot.change_presence(activity=discord.Game(name='Serving {0} glorious servers'.format(len(bot.guilds)))) + await bot.change_presence(activity=discord.Game(name="Serving {0} glorious servers".format(len(bot.guilds)))) await asyncio.sleep(STATUS_LOOP) - await bot.change_presence(activity=discord.Game(name='>>help'.format(len(bot.guilds)))) + await bot.change_presence(activity=discord.Game(name=">>help")) await asyncio.sleep(STATUS_LOOP) - await bot.change_presence(activity=discord.Game(name='Proletarian Uprising 2: Electric Boogaloo'.format(len(bot.guilds)))) + await bot.change_presence(activity=discord.Game(name="Proletarian Uprising 2: Electric Boogaloo")) await asyncio.sleep(STATUS_LOOP) @bot.event @@ -93,7 +93,7 @@ async def help(ctx): name=">>ban ", value= """Vote to ban user. - Vote Time: {1} minutes + Vote Time: {0} minutes Minimum Voters: {1} """.format(int(BAN_VOTE_TIME/60), MIN_BAN_VOTERS) )