1
0
Fork 0
mirror of synced 2024-06-28 11:10:27 +12:00

Corrected syntax error

This commit is contained in:
Phxntxm 2016-11-20 19:28:09 -06:00
parent 2b85dabb15
commit 8d57ce6c03

View file

@ -121,7 +121,7 @@ class Core:
# Create the original embed object
opts = {'title': 'Dev Server',
'description': 'Join the server above for any questions/suggestions about me.'
'description': 'Join the server above for any questions/suggestions about me.',
'url': config.dev_server}
embed = discord.Embed(**opts)
@ -136,7 +136,7 @@ class Core:
ttt_games = len([server_id for server_id,
game in self.bot.get_cog('TicTacToe').boards.items()])
count_battles = 0
for battles in self.bot.get_cog('Interaction').battles.values():
count_battles += len(battles)