mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-12-27 15:37:03 +01:00
Added commands I think
This commit is contained in:
parent
13b2aade5e
commit
af41365c7b
@ -13,9 +13,9 @@ logging.getLogger('sqlalchemy')
|
||||
bot = commands.Bot(command_prefix=config['command-prefix'])
|
||||
database = DatabaseInterface(bot)
|
||||
|
||||
def _cleanup(self):
|
||||
def _cleanup():
|
||||
try:
|
||||
bot.loop.run_until_complete(self.logout())
|
||||
bot.loop.run_until_complete(logout())
|
||||
except: # Can be ignored
|
||||
pass
|
||||
pending = asyncio.Task.all_tasks()
|
||||
@ -194,7 +194,7 @@ except discord.errors.LoginFailure:
|
||||
print("Invalid bot token in config!")
|
||||
finally:
|
||||
try:
|
||||
self._cleanup()
|
||||
_cleanup()
|
||||
except Exception as e:
|
||||
print("Error in cleanup:", e)
|
||||
bot.loop.close()
|
Loading…
Reference in New Issue
Block a user