Commit 192d9f8b by Michael DeHaan

Merge pull request #3607 from stoned/use-AnsibleFilterError

Use AnsibleFilterError exception
parents 1c21fc48 667ad248
...@@ -48,14 +48,14 @@ def success(*a, **kw): ...@@ -48,14 +48,14 @@ def success(*a, **kw):
def skipped(*a, **kw): def skipped(*a, **kw):
item = a[0] item = a[0]
if type(item) != dict: if type(item) != dict:
raise errors.AnsibleError("|skipped expects a dictionary") raise errors.AnsibleFilterError("|skipped expects a dictionary")
skipped = item.get('skipped', False) skipped = item.get('skipped', False)
return skipped return skipped
def mandatory(a): def mandatory(a):
''' Make a variable mandatory ''' ''' Make a variable mandatory '''
if not a: if not a:
raise errors.AnsibleError('Mandatory variable not defined.') raise errors.AnsibleFilterError('Mandatory variable not defined.')
return a return a
def bool(a): def bool(a):
......
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