From 1d94e0f63b9b72069b92bd6bdf7ba3b5eaa6f3bf Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Wed, 2 Mar 2016 08:58:15 -0800 Subject: [PATCH] more information --- lib/ansible/template/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/ansible/template/__init__.py b/lib/ansible/template/__init__.py index 8a6f89787aa..9188ca7a294 100644 --- a/lib/ansible/template/__init__.py +++ b/lib/ansible/template/__init__.py @@ -507,7 +507,8 @@ class Templar: ) else: debug("failing because of a type error, template data is: %s" % data) - raise AnsibleError("an unexpected type error occurred. Error was %s" % te) + import traceback + raise AnsibleError("an unexpected type error occurred. Error was %s, tracback: %s" % (te, traceback.format_exc())) if preserve_trailing_newlines: # The low level calls above do not preserve the newline