Fix exception type

pull/4420/head
Michael DeHaan 2012-03-14 12:51:26 -04:00
parent c909b66864
commit 1a0672fd1e
1 changed files with 1 additions and 1 deletions

View File

@ -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' ] :