ansible_native_concat: use to_text rather than jinja2's text_type (#68038)

jinja2._compat.text_type has been removed in jinja2's master branch so
use ansible's to_text instead.
This commit is contained in:
Martin Krizek 2020-03-24 12:03:31 +01:00 committed by GitHub
parent 967e05bb23
commit 550e021cd2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 4 deletions

View file

@ -0,0 +1,2 @@
minor_changes:
- ansible_native_concat() - use ``to_text`` function rather than Jinja2's ``text_type`` which has been removed in Jinja2 master branch.

View file

@ -10,9 +10,9 @@ from ast import literal_eval
from itertools import islice, chain
import types
from jinja2._compat import text_type
from jinja2.runtime import StrictUndefined
from ansible.module_utils._text import to_text
from ansible.parsing.yaml.objects import AnsibleVaultEncryptedUnicode
@ -46,7 +46,7 @@ def ansible_native_concat(nodes):
# (see Jinja2 source of StrictUndefined to get up to date info)
# Otherwise the undefined error would be raised on the next access which might not be properly handled.
# See https://github.com/ansible/ansible/issues/52158
# We do that only here because it is taken care of by text_type() in the else block below already.
# We do that only here because it is taken care of by to_text() in the else block below already.
str(out)
# short circuit literal_eval when possible
@ -57,7 +57,7 @@ def ansible_native_concat(nodes):
nodes = chain(head, nodes)
# Stringifying the nodes is important as it takes care of
# StrictUndefined by side-effect - by raising an exception.
out = u''.join([text_type(v) for v in nodes])
out = u''.join([to_text(v) for v in nodes])
try:
return literal_eval(out)