From 6ce502113f550c027424fa477edc091283c32e50 Mon Sep 17 00:00:00 2001 From: "Bryn M. Reeves" Date: Mon, 20 Oct 2014 14:33:57 +0100 Subject: [PATCH 14/93] [mysql] fix pep8 violations The previous commit had a couple of pep8 errors that were fixed in the working tree but not added to the commit; fix them. Signed-off-by: Bryn M. Reeves --- sos/plugins/mysql.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sos/plugins/mysql.py b/sos/plugins/mysql.py index 1203f5c..d148472 100644 --- a/sos/plugins/mysql.py +++ b/sos/plugins/mysql.py @@ -15,6 +15,7 @@ from sos.plugins import Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin import os + class Mysql(Plugin): """MySQL and MariaDB RDBMS """ @@ -44,7 +45,7 @@ class Mysql(Plugin): if self.get_option("dbdump"): dbuser = self.get_option("dbuser") dbpass = self.get_option("dbpass") - if dbpass == False and 'MYSQL_PWD' in os.environ: + if dbpass is False and 'MYSQL_PWD' in os.environ: dbpass = os.environ['MYSQL_PWD'] else: # no MySQL password -- 1.9.3