Skip to content
Snippets Groups Projects
Commit 95e45403 authored by Campbell Barton's avatar Campbell Barton
Browse files

fix for exporting empty scene

parent 64e3e69b
No related branches found
No related tags found
No related merge requests found
......@@ -107,7 +107,7 @@ def build_hierarchy(objects):
for obj, subchildren in children:
subchildren[:] = par_lookup.get(obj, [])
return par_lookup[None]
return par_lookup.get(None, [])
# -----------------------------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment