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

Fixes #6393
This commit is contained in:
James Cammarata 2014-03-12 10:41:18 -05:00
parent d8a81c488e
commit 86d2ee4b97

View file

@ -579,7 +579,6 @@ class Play(object):
for x in results:
if self.tags is not None:
self.tags = list(set(self.tags).union(set(x.tags)))
x.tags.extend(self.tags)
return results