mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 06:12:51 +00:00
fixed another line with same issues
Signed-off-by: Brian Coca <briancoca+ansible@gmail.com>
This commit is contained in:
@@ -236,7 +236,7 @@ class Play(object):
|
|||||||
new_tags = var_obj.get('tags', [])
|
new_tags = var_obj.get('tags', [])
|
||||||
if isinstance(new_tags, basestring):
|
if isinstance(new_tags, basestring):
|
||||||
new_tags = [new_tags, ]
|
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(role_vars)
|
||||||
passed_vars['tags'] = __merge_tags(dep_vars)
|
passed_vars['tags'] = __merge_tags(dep_vars)
|
||||||
|
|||||||
Reference in New Issue
Block a user