Arch: small fix in IFCexport

This commit is contained in:
Yorik van Havre 2016-02-11 20:06:06 -02:00
parent fe22e9730f
commit 6a103493a1

View File

@ -886,10 +886,11 @@ def export(exportList,filename):
count = 1
# build clones table
for o in objectslist:
b = Draft.getCloneBase(o,strict=True)
if b:
clones.setdefault(b.Name,[]).append(o.Name)
if CREATE_CLONES:
for o in objectslist:
b = Draft.getCloneBase(o,strict=True)
if b:
clones.setdefault(b.Name,[]).append(o.Name)
#print "clones table: ",clones
#print objectslist