From cd28d82639a394d7473bec6e39c83a5bf082e02a 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 6fb96d7931..b707b1596f 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