From 2e85272cd54ff0c9be97d73f3c2d1ec664987342 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Wed, 28 Jun 2017 09:41:03 -0700 Subject: [PATCH] PEP 8 fixes. --- contrib/inventory/zabbix.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/contrib/inventory/zabbix.py b/contrib/inventory/zabbix.py index 2a642d4d120..b72c1271a18 100755 --- a/contrib/inventory/zabbix.py +++ b/contrib/inventory/zabbix.py @@ -24,7 +24,7 @@ Zabbix Server external inventory script. ======================================== Returns hosts and hostgroups from Zabbix Server. -If you want to run with --limit against a host group with space in the +If you want to run with --limit against a host group with space in the name, use asterisk. For example --limit="Linux*servers". Configuration is read from `zabbix.ini`. @@ -104,18 +104,18 @@ class ZabbixInventory(object): data[groupname]['hosts'].append(hostname) - # Prevents Ansible from calling this script for each server with --host - data['_meta'] = { 'hostvars': self.meta } + # Prevents Ansible from calling this script for each server with --host + data['_meta'] = {'hostvars': self.meta} return data def __init__(self): - self.defaultgroup = 'group_all' - self.zabbix_server = None + self.defaultgroup = 'group_all' + self.zabbix_server = None self.zabbix_username = None self.zabbix_password = None - self.meta = {} + self.meta = {} self.read_settings() self.read_cli()