mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
expand_lists should default to False
This commit is contained in:
parent
7a49230e85
commit
bc709e7b67
1 changed files with 1 additions and 1 deletions
|
@ -219,7 +219,7 @@ def varReplace(basedir, raw, vars, lookup_fatal=True, depth=0, expand_lists=Fals
|
|||
|
||||
return ''.join(done)
|
||||
|
||||
def template(basedir, varname, vars, lookup_fatal=True, expand_lists=True, depth=0):
|
||||
def template(basedir, varname, vars, lookup_fatal=True, expand_lists=False, depth=0):
|
||||
''' templates a data structure by traversing it and substituting for other data structures '''
|
||||
|
||||
if isinstance(varname, basestring):
|
||||
|
|
Loading…
Reference in a new issue