mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
use to_unicode() in _jinja2_vars if type is str.
This commit is contained in:
parent
ab45e5ee59
commit
2d73892acf
1 changed files with 3 additions and 1 deletions
|
@ -33,7 +33,7 @@ import ast
|
|||
import traceback
|
||||
|
||||
from ansible.utils.string_functions import count_newlines_from_end
|
||||
from ansible.utils import to_bytes
|
||||
from ansible.utils import to_bytes, to_unicode
|
||||
|
||||
class Globals(object):
|
||||
|
||||
|
@ -184,6 +184,8 @@ class _jinja2_vars(object):
|
|||
var = self.vars[varname]
|
||||
# HostVars is special, return it as-is, as is the special variable
|
||||
# 'vars', which contains the vars structure
|
||||
if type(var) == str:
|
||||
var = to_unicode(var)
|
||||
if isinstance(var, dict) and varname == "vars" or isinstance(var, HostVars):
|
||||
return var
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue