From 42b55a07cd132c1b55379908d4c353edeae648cb Mon Sep 17 00:00:00 2001 From: Seth Vidal Date: Mon, 7 May 2012 18:10:52 -0400 Subject: [PATCH] fix indentation --- lib/ansible/inventory.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/inventory.py b/lib/ansible/inventory.py index 6fb96d79316..b707b1596ff 100644 --- a/lib/ansible/inventory.py +++ b/lib/ansible/inventory.py @@ -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