summaryrefslogtreecommitdiffstats
path: root/base/common/python/pki/system.py
diff options
context:
space:
mode:
authorMatthew Harmsen <mharmsen@redhat.com>2015-05-26 19:28:09 -0600
committerMatthew Harmsen <mharmsen@redhat.com>2015-05-26 19:48:14 -0600
commitc695c2abf0a2edb4878c1cf01fd3222821ae8fc9 (patch)
tree1c602dbe54dc539fef858ea586bad5d86ae2a439 /base/common/python/pki/system.py
parent576ab24f0d2499465904c3770ef5cffdfa6ec8a2 (diff)
downloadpki-c695c2abf0a2edb4878c1cf01fd3222821ae8fc9.tar.gz
pki-c695c2abf0a2edb4878c1cf01fd3222821ae8fc9.tar.xz
pki-c695c2abf0a2edb4878c1cf01fd3222821ae8fc9.zip
PKI TRAC Ticket #1388 - pylint unidiomatic-typecheck warnings cause koji builds to fail
(cherry picked from commit d2c24aff4e9dc6aa27b337479cfee1fac4940994)
Diffstat (limited to 'base/common/python/pki/system.py')
-rw-r--r--base/common/python/pki/system.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/common/python/pki/system.py b/base/common/python/pki/system.py
index 24deefca4..76b505909 100644
--- a/base/common/python/pki/system.py
+++ b/base/common/python/pki/system.py
@@ -111,7 +111,7 @@ class SecurityDomainSubsystem(object):
subsystem.name = json_value['@id']
hosts = json_value['Host']
- if type(hosts) is dict:
+ if isinstance(hosts, dict):
hosts = [ hosts ]
for h in hosts:
@@ -154,7 +154,7 @@ class SecurityDomainInfo(object):
security_domain.name = domain_info['@id']
subsystems = domain_info['Subsystem']
- if type(subsystems) is dict:
+ if isinstance(subsystems, dict):
subsystems = [ subsystems ]
for s in subsystems: