1
0
Fork 0
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:
Brian Coca 2015-02-24 05:26:41 -05:00
parent ce764063f1
commit 4fa51652b4

View file

@ -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)