Merge pull request #74 from tbielawa/ungrouped

Fix parse_hosts to not blow up on ungrouped hosts.
This commit is contained in:
Michael DeHaan 2012-03-05 11:16:55 -08:00
commit 3c20f4000f

View file

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