Commit 86d2ee4b by James Cammarata

Don't append tags from roles to the plays tags list

Fixes #6393
parent d8a81c48
...@@ -579,7 +579,6 @@ class Play(object): ...@@ -579,7 +579,6 @@ class Play(object):
for x in results: for x in results:
if self.tags is not None: if self.tags is not None:
self.tags = list(set(self.tags).union(set(x.tags)))
x.tags.extend(self.tags) x.tags.extend(self.tags)
return results return results
......
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