From 51fedb64a93d552979fcb73244c91529772e6f37 Mon Sep 17 00:00:00 2001 From: James Cammarata Date: Fri, 6 Sep 2013 12:50:50 -0500 Subject: [PATCH] Cleaning up pep8 whitepsace issues in the mysql_replication module --- database/mysql_replication | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/database/mysql_replication b/database/mysql_replication index ff245f41ccf..32702369d63 100644 --- a/database/mysql_replication +++ b/database/mysql_replication @@ -372,25 +372,25 @@ def main(): if master_connect_retry: chm.append("MASTER_CONNECT_RETRY='" + master_connect_retry + "'") if master_log_file: - chm.append("MASTER_LOG_FILE='" + master_log_file + "'") + chm.append("MASTER_LOG_FILE='" + master_log_file + "'") if master_log_pos: - chm.append("MASTER_LOG_POS=" + master_log_pos) + chm.append("MASTER_LOG_POS=" + master_log_pos) if relay_log_file: - chm.append("RELAY_LOG_FILE='" + relay_log_file + "'") + chm.append("RELAY_LOG_FILE='" + relay_log_file + "'") if relay_log_pos: - chm.append("RELAY_LOG_POS=" + relay_log_pos) + chm.append("RELAY_LOG_POS=" + relay_log_pos) if master_ssl: - chm.append("MASTER_SSL=" + master_ssl) + chm.append("MASTER_SSL=" + master_ssl) if master_ssl_ca: - chm.append("MASTER_SSL_CA='" + master_ssl_ca + "'") + chm.append("MASTER_SSL_CA='" + master_ssl_ca + "'") if master_ssl_capath: - chm.append("MASTER_SSL_CAPATH='" + master_ssl_capath + "'") + chm.append("MASTER_SSL_CAPATH='" + master_ssl_capath + "'") if master_ssl_cert: - chm.append("MASTER_SSL_CERT='" + master_ssl_cert + "'") + chm.append("MASTER_SSL_CERT='" + master_ssl_cert + "'") if master_ssl_key: - chm.append("MASTER_SSL_KEY='" + master_ssl_key + "'") + chm.append("MASTER_SSL_KEY='" + master_ssl_key + "'") if master_ssl_cipher: - chm.append("MASTER_SSL_CIPTHER='" + master_ssl_cipher + "'") + chm.append("MASTER_SSL_CIPTHER='" + master_ssl_cipher + "'") changemaster(cursor,chm) module.exit_json(changed=True) elif mode in "startslave":