fix the get_hosts() error in get_groups returning a dict not a list of group objects

This commit is contained in:
Seth Vidal 2012-05-07 18:09:57 -04:00
parent dcbe48e2d4
commit 279e5e4522

View file

@ -73,7 +73,7 @@ class Inventory(object):
hosts = {}
patterns = pattern.replace(";",":").split(":")
for group in self.get_groups():
for (groupname, group) in self.get_groups().items():
for host in group.get_hosts():
for pat in patterns:
if group.name == pat or pat == 'all' or self._match(host.name, pat):