fix: collection dump

This commit is contained in:
Swann Martinez
2019-10-09 19:14:48 +02:00
parent 960b699e3d
commit d293b36f1e
2 changed files with 4 additions and 4 deletions

View File

@ -51,10 +51,10 @@ class BlCollection(BlDatablock):
# dump children collections
collection_children = []
for object in pointer.objects:
collection_children.append(object.uuid)
for child in pointer.children:
collection_children.append(child.uuid)
data['children'] = collection_objects
data['children'] = collection_children
# dumper = utils.dump_anything.Dumper()
# dumper.depth = 2