summaryrefslogtreecommitdiffstats
path: root/filter_plugins/oo_zabbix_filters.py
diff options
context:
space:
mode:
Diffstat (limited to 'filter_plugins/oo_zabbix_filters.py')
-rw-r--r--filter_plugins/oo_zabbix_filters.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/filter_plugins/oo_zabbix_filters.py b/filter_plugins/oo_zabbix_filters.py
index fcfe43777..1c1854b29 100644
--- a/filter_plugins/oo_zabbix_filters.py
+++ b/filter_plugins/oo_zabbix_filters.py
@@ -7,6 +7,7 @@ Custom zabbix filters for use in openshift-ansible
import pdb
+
class FilterModule(object):
''' Custom zabbix ansible filters '''
@@ -107,7 +108,7 @@ class FilterModule(object):
for results in data:
if cluster == results['item'][0]:
results = results['results']
- if results and len(results) > 0 and all([results[0].has_key(_key) for _key in keys]):
+ if results and len(results) > 0 and all([_key in results[0] for _key in keys]):
tmp = {}
tmp['clusterid'] = cluster
for key in keys: