Merge branch 'better_ini_errors2' of git://github.com/bcoca/ansible into devel

pull/3790/merge
Michael DeHaan 11 years ago
commit ee11d69697

@ -112,7 +112,10 @@ class InventoryParser(object):
for t in tokens[1:]:
if t.startswith('#'):
break
try:
(k,v) = t.split("=")
except ValueError, e:
raise errors.AnsibleError("Invalid ini entry: %s - %s" % (t, str(e)))
host.set_variable(k,v)
self.groups[active_group_name].add_host(host)

Loading…
Cancel
Save