Added commands I think

This commit is contained in:
JustMaffie 2017-05-28 00:11:35 +02:00
parent 13b2aade5e
commit af41365c7b

View File

@ -13,9 +13,9 @@ logging.getLogger('sqlalchemy')
bot = commands.Bot(command_prefix=config['command-prefix']) bot = commands.Bot(command_prefix=config['command-prefix'])
database = DatabaseInterface(bot) database = DatabaseInterface(bot)
def _cleanup(self): def _cleanup():
try: try:
bot.loop.run_until_complete(self.logout()) bot.loop.run_until_complete(logout())
except: # Can be ignored except: # Can be ignored
pass pass
pending = asyncio.Task.all_tasks() pending = asyncio.Task.all_tasks()
@ -194,7 +194,7 @@ except discord.errors.LoginFailure:
print("Invalid bot token in config!") print("Invalid bot token in config!")
finally: finally:
try: try:
self._cleanup() _cleanup()
except Exception as e: except Exception as e:
print("Error in cleanup:", e) print("Error in cleanup:", e)
bot.loop.close() bot.loop.close()