From 0214537e497d716f04634bd23aafe2425b14fda7 Mon Sep 17 00:00:00 2001 From: Phxntxm Date: Sun, 28 Aug 2016 16:41:32 -0500 Subject: [PATCH] Correctected the indentation error --- cogs/tictactoe.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cogs/tictactoe.py b/cogs/tictactoe.py index b2340c9..544df78 100644 --- a/cogs/tictactoe.py +++ b/cogs/tictactoe.py @@ -263,8 +263,7 @@ class TicTacToe: # Print the board too just because fmt += str(self.boards[ctx.message.server.id]) # We don't need to do anything weird with assigning x_player to something, it is already a member object, just use it - fmt += "I have decided at random, and {} is going to be x's this game. It is your turn first!\n" - "Use the {}tictactoe command, and a position, to choose where you want to play".format(x_player.display_name, ctx.prefix) + fmt += "I have decided at random, and {} is going to be x's this game. It is your turn first!\nUse the {}tictactoe command, and a position, to choose where you want to play".format(x_player.display_name, ctx.prefix) await self.bot.say(fmt) @tictactoe.command(name='delete', aliases=['stop', 'remove', 'end'], pass_context=True, no_pm=True)