[template/vars] Use to_native(exception) as a fallback for Python 3 which doesn't have a .message attribute (#34044)

pull/34069/head
Sloane Hertel 8 years ago committed by GitHub
parent b06f7688cd
commit 7bc754674c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -105,7 +105,10 @@ class AnsibleJ2Vars(Mapping):
try:
value = self._templar.template(variable)
except Exception as e:
raise type(e)(to_native(variable) + ': ' + e.message)
try:
raise type(e)(to_native(variable) + ': ' + e.message)
except AttributeError:
raise type(e)(to_native(variable) + ': ' + to_native(e))
return value
def add_locals(self, locals):

Loading…
Cancel
Save