From c933a4c59a3d22feb9bd7286f1003d8503d58e68 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Sat, 19 Oct 2013 12:58:16 -0400 Subject: [PATCH] Fix indentation depth. --- lib/ansible/inventory/group.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/inventory/group.py b/lib/ansible/inventory/group.py index cafb76e6002..a4f30957155 100644 --- a/lib/ansible/inventory/group.py +++ b/lib/ansible/inventory/group.py @@ -57,8 +57,8 @@ class Group(object): for kid in self.child_groups: kid_hosts = kid.get_hosts() for kk in kid_hosts: - if kk not in hosts: - hosts.append(kk) + if kk not in hosts: + hosts.append(kk) for mine in self.hosts: if mine not in hosts: hosts.append(mine)