Fix exception type
This commit is contained in:
parent
c909b66864
commit
1a0672fd1e
1 changed files with 1 additions and 1 deletions
|
@ -196,7 +196,7 @@ def parse_json(data):
|
|||
tokens = shlex.split(data)
|
||||
for t in tokens:
|
||||
if t.find("=") == -1:
|
||||
raise AnsibleException("failed to parse: %s" % data)
|
||||
raise AnsibleError("failed to parse: %s" % data)
|
||||
(key,value) = t.split("=", 1)
|
||||
if key == 'changed' or 'failed':
|
||||
if value.lower() in [ 'true', '1' ] :
|
||||
|
|
Loading…
Reference in a new issue