Commit c933a4c5 by Michael DeHaan

Fix indentation depth.

parent aa93ce2d
...@@ -57,8 +57,8 @@ class Group(object): ...@@ -57,8 +57,8 @@ class Group(object):
for kid in self.child_groups: for kid in self.child_groups:
kid_hosts = kid.get_hosts() kid_hosts = kid.get_hosts()
for kk in kid_hosts: for kk in kid_hosts:
if kk not in hosts: if kk not in hosts:
hosts.append(kk) hosts.append(kk)
for mine in self.hosts: for mine in self.hosts:
if mine not in hosts: if mine not in hosts:
hosts.append(mine) hosts.append(mine)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment