Commit 79809b67 by Brian Coca

fixed another line with same issues

Signed-off-by: Brian Coca <briancoca+ansible@gmail.com>
parent d3d5680d
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment