Commit ff1b2006 by Michael DeHaan

Merge pull request #155 from jhoekx/inventory-error-fixes

Inventory: AnsibleError is not global...
parents ff99a22e aa555b8b
......@@ -218,7 +218,7 @@ class Inventory(object):
def set_variables(host, variables):
for variable in variables:
if len(variable) != 1:
raise AnsibleError("Only one item expected in %s"%(variable))
raise errors.AnsibleError("Only one item expected in %s"%(variable))
k, v = variable.items()[0]
self._set_variable(host, k, v)
......@@ -235,7 +235,7 @@ class Inventory(object):
return host_name
else:
raise AnsibleError("Unknown item in inventory: %s"%(item))
raise errors.AnsibleError("Unknown item in inventory: %s"%(item))
def _get_variables_from_script(self, host):
......
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