mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-27 10:40:22 -07:00
fixed another line with same issues
Signed-off-by: Brian Coca <briancoca+ansible@gmail.com>
This commit is contained in:
parent
d3d5680d8f
commit
79809b67dc
1 changed files with 1 additions and 1 deletions
|
@ -236,7 +236,7 @@ class Play(object):
|
|||
new_tags = var_obj.get('tags', [])
|
||||
if isinstance(new_tags, basestring):
|
||||
new_tags = [new_tags, ]
|
||||
return list(set(old_tags + new_tags))
|
||||
return list(set(old_tags).union(set(new_tags)))
|
||||
|
||||
passed_vars['tags'] = __merge_tags(role_vars)
|
||||
passed_vars['tags'] = __merge_tags(dep_vars)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue