1
0
Fork 0
mirror of synced 2024-09-29 08:51:53 +13:00

corrected syntax error

This commit is contained in:
Phxntxm 2016-07-30 10:00:51 -05:00
parent 6983cf8d6b
commit 945e3ef878

View file

@ -65,7 +65,7 @@ class Core:
@checks.customPermsOrRole(send_messages=True) @checks.customPermsOrRole(send_messages=True)
async def uptime(self): async def uptime(self):
"""Provides a printout of the current bot's uptime""" """Provides a printout of the current bot's uptime"""
awayt self.bot.say("Uptime = ```{}```".format(get_bot_uptime())) await self.bot.say("Uptime = ```{}```".format(get_bot_uptime()))
@commands.command() @commands.command()
@checks.customPermsOrRole(send_messages=True) @checks.customPermsOrRole(send_messages=True)