From 2205f4ef40ebb3a53878dc1f8ecac956cc6ed482 Mon Sep 17 00:00:00 2001 From: Anthony Yeh Date: Tue, 22 Jul 2014 14:07:33 -0700 Subject: [PATCH] Fix python indentation. --- test/mysql_flavor.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/test/mysql_flavor.py b/test/mysql_flavor.py index 962b05b8d9..dac6efbd33 100644 --- a/test/mysql_flavor.py +++ b/test/mysql_flavor.py @@ -15,13 +15,13 @@ class MysqlFlavor(object): "CHANGE MASTER TO MASTER_HOST = ''", ] - def reset_replication_commands(self): - return [ - "RESET MASTER", - "STOP SLAVE", - "RESET SLAVE", - 'CHANGE MASTER TO MASTER_HOST = ""', - ] + def reset_replication_commands(self): + return [ + "RESET MASTER", + "STOP SLAVE", + "RESET SLAVE", + 'CHANGE MASTER TO MASTER_HOST = ""', + ] class GoogleMysql(MysqlFlavor):