Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
pull/82504/head
Abhijeet Kasurde 4 months ago committed by GitHub
parent ceaf68a02c
commit 57a59e7194
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -560,7 +560,7 @@ class FieldAttributeBase:
setattr(self, name, value)
except (TypeError, ValueError) as e:
value = getattr(self, name)
raise AnsibleParserError("the field '%s' has an invalid value (%s), and could not be converted to an %s."
raise AnsibleParserError("the field '%s' has an invalid value (%s), and could not be converted to an %s. "
"The error was: %s" % (name, value, attribute.isa, e), obj=self.get_ds(), orig_exc=e)
except (AnsibleUndefinedVariable, UndefinedError) as e:
if templar._fail_on_undefined_errors and name != 'name':

Loading…
Cancel
Save