From a3bd5046556dca3704ad4a6b8a7029724c30b589 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Sun, 26 Oct 2014 22:26:03 -0400 Subject: Fixed pylint failure on F21. The build failed on F21 due to stricter pylint requirements which generate new warnings. For now they are marked to be ignored. --- base/common/python/pki/upgrade.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'base/common/python') diff --git a/base/common/python/pki/upgrade.py b/base/common/python/pki/upgrade.py index 5d6af821a..9ff89fa92 100644 --- a/base/common/python/pki/upgrade.py +++ b/base/common/python/pki/upgrade.py @@ -622,7 +622,7 @@ class PKIUpgrader(object): except pki.PKIException: raise - except Exception as e: + except Exception as e: # pylint: disable-msg=W0703 print @@ -689,7 +689,7 @@ class PKIUpgrader(object): except pki.PKIException: raise - except Exception as e: + except Exception as e: # pylint: disable-msg=W0703 print -- cgit