Ansible J2 unicode

Hi everyone.

When trying to template out a weblogic wl.properties file, I am running into a Jinja2 template problem.

Here is a snippet of code I am running into issues with:

By doing this:

{{ [more_servers] }}

You are creating a python list, and then printing it.

I think you instead want:

[{{ more_servers }}]

Matt,

you sir are a life saver! That is exactly what I am looking for.

Thanks much!!