mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
fixed typoe in combined_Vars
This commit is contained in:
parent
ce764063f1
commit
4fa51652b4
1 changed files with 1 additions and 1 deletions
|
@ -634,7 +634,7 @@ class Play(object):
|
|||
# temp vars are used here to avoid trampling on the existing vars structures
|
||||
temp_vars = utils.combine_vars(self.vars, self.vars_file_vars)
|
||||
temp_vars = utils.combine_vars(temp_vars, mv)
|
||||
temp_vars = utils.combine_Vars(temp_vars, self.playbook.extra_vars)
|
||||
temp_vars = utils.combine_vars(temp_vars, self.playbook.extra_vars)
|
||||
include_file = template(dirname, tokens[0], temp_vars)
|
||||
include_filename = utils.path_dwim(dirname, include_file)
|
||||
|
||||
|
|
Loading…
Reference in a new issue