fix indentation

This commit is contained in:
Seth Vidal 2012-05-07 18:10:52 -04:00
parent f41fb90d78
commit 42b55a07cd

View file

@ -88,8 +88,8 @@ class Inventory(object):
def get_host(self, hostname):
for group in self.groups:
for host in group.get_hosts():
if hostname == host.name:
for host in group.get_hosts():
if hostname == host.name:
return host
return None