raise AnsibleError as an 'expected' exception

fixes #14065
pull/14214/head
Brian Coca 9 years ago
parent cd0812a187
commit 9a3515357b

@ -256,6 +256,6 @@ def split_args(args):
# If we're done and things are not at zero depth or we're still inside quotes, # If we're done and things are not at zero depth or we're still inside quotes,
# raise an error to indicate that the args were unbalanced # raise an error to indicate that the args were unbalanced
if print_depth or block_depth or comment_depth or inside_quotes: if print_depth or block_depth or comment_depth or inside_quotes:
raise Exception("error while splitting arguments, either an unbalanced jinja2 block or quotes") raise AnsibleError("error while splitting arguments, either an unbalanced jinja2 block or quotes")
return params return params

Loading…
Cancel
Save