Fix parse_hosts to not blow up on ungrouped hosts.

pull/3/head
Tim Bielawa 12 years ago
parent a57f7ae010
commit b190ea4b62

@ -112,6 +112,7 @@ class Runner(object):
host_list = os.path.expanduser(host_list)
lines = file(host_list).read().split("\n")
groups = {}
groups['ungrouped'] = []
group_name = 'ungrouped'
results = []
for item in lines:

Loading…
Cancel
Save