diff options
| author | Endi S. Dewata <edewata@redhat.com> | 2014-10-26 22:26:03 -0400 |
|---|---|---|
| committer | Endi S. Dewata <edewata@redhat.com> | 2014-10-27 14:02:24 -0400 |
| commit | a3bd5046556dca3704ad4a6b8a7029724c30b589 (patch) | |
| tree | 6a603dba0de7352b861d6dae59b8e5775bcd05d2 /base/common/python | |
| parent | 4ac463dabb81e94cc4083dd052af232a77001fe3 (diff) | |
| download | pki-a3bd5046556dca3704ad4a6b8a7029724c30b589.tar.gz pki-a3bd5046556dca3704ad4a6b8a7029724c30b589.tar.xz pki-a3bd5046556dca3704ad4a6b8a7029724c30b589.zip | |
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.
Diffstat (limited to 'base/common/python')
| -rw-r--r-- | base/common/python/pki/upgrade.py | 4 |
1 files changed, 2 insertions, 2 deletions
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 |
