Ensure environment is inherited properly (task->block/include->play)

This commit is contained in:
James Cammarata 2015-11-09 14:51:07 -05:00
commit 76ae577519
3 changed files with 7 additions and 6 deletions

View file

@ -442,7 +442,7 @@ class Base:
new_value = [ new_value ]
#return list(set(value + new_value))
return [i for i,_ in itertools.groupby(value + new_value)]
return [i for i,_ in itertools.groupby(value + new_value) if i is not None]
def __getstate__(self):
return self.serialize()