mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-24 19:31:26 -07:00
Allow camelCase variables in varreplace.
This commit is contained in:
parent
dab50574e0
commit
dc60f2d844
2 changed files with 11 additions and 1 deletions
|
@ -243,7 +243,7 @@ def varReplace(raw, vars):
|
|||
|
||||
# Determine replacement value (if unknown variable then preserve
|
||||
# original)
|
||||
varname = m.group(2).lower()
|
||||
varname = m.group(2)
|
||||
|
||||
replacement = unicode(varLookup(varname, vars) or m.group())
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue