This commit is contained in:
DiG 2022-01-17 16:12:00 +01:00
parent 162fb1e6ce
commit 8cf19e7a99
1 changed files with 2 additions and 1 deletions

View File

@ -477,7 +477,8 @@ def save( model, domains ):
to_browse = {}
for muid in unique_models:
model, id = muid.split('/')
to_browse[model] = [] if not model in to_browse
if not model in to_browse:
to_browse[model] = []
to_browse[model] += id
return to_browse