mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
dict is dict (#54057)
This commit is contained in:
2
changelogs/fragments/dict_is_dict.yml
Normal file
2
changelogs/fragments/dict_is_dict.yml
Normal file
@@ -0,0 +1,2 @@
|
||||
bugfixes:
|
||||
- allow 'dict()' jinja2 global to function the same even though it has changed in jinja2 versions
|
||||
@@ -690,6 +690,9 @@ class Templar:
|
||||
else:
|
||||
return data
|
||||
|
||||
# jinja2 global is inconsistent across versions, this normalizes them
|
||||
t.globals['dict'] = dict
|
||||
|
||||
if disable_lookups:
|
||||
t.globals['query'] = t.globals['q'] = t.globals['lookup'] = self._fail_lookup
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user