1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Merge pull request #2775 from jhoekx/remove-debug-in-template

Remove leftover debug statement in template code.
This commit is contained in:
Michael DeHaan 2013-04-25 17:41:46 -07:00
commit ee4a0fc6a0

View file

@ -453,7 +453,6 @@ def template_from_string(basedir, data, vars):
try:
t = environment.from_string(data)
except Exception, e:
print "DEBUG: data = %s" % data
if 'recursion' in str(e):
raise errors.AnsibleError("recursive loop detected in template string: %s" % data)
else: