This commit is contained in:
DiG 2022-01-17 13:17:26 +01:00
parent 54ec10eb4d
commit 54e8e42633
1 changed files with 1 additions and 1 deletions

View File

@ -285,7 +285,7 @@ def lookup_model( muid ):
# if field.ttype == 'reference':
if recursive == True or field.relation in recursive:
_tree[muid][field.name] = [ lookup_model( muid ) for id in _tree[muid][field.name] ]
_tree[muid][field.name] = [ lookup_model( id ) for id in _tree[muid][field.name] ]
else: