set 'nonstring' arg to passthru.

pull/10426/head
Shirou WAKAYAMA 10 years ago
parent 2d73892acf
commit d92e8edf6e

@ -184,8 +184,7 @@ class _jinja2_vars(object):
var = self.vars[varname] var = self.vars[varname]
# HostVars is special, return it as-is, as is the special variable # HostVars is special, return it as-is, as is the special variable
# 'vars', which contains the vars structure # 'vars', which contains the vars structure
if type(var) == str: var = to_unicode(var, nonstring="passthru")
var = to_unicode(var)
if isinstance(var, dict) and varname == "vars" or isinstance(var, HostVars): if isinstance(var, dict) and varname == "vars" or isinstance(var, HostVars):
return var return var
else: else:

Loading…
Cancel
Save