corrected a double await

This commit is contained in:
Sakimori 2020-12-31 14:19:54 -05:00
parent 986135fd89
commit 240f545468

View File

@ -176,7 +176,7 @@ class StartGameCommand(Command):
game_task = asyncio.create_task(watch_game(channel, game, user=msg.author, league=league))
await game_task
else:
await await msg.channel.send("We can't find one or both of those teams. Check your staging, chief.")
await msg.channel.send("We can't find one or both of those teams. Check your staging, chief.")
return
class SetupGameCommand(Command):