Skip to content

Commit

Permalink
Arch: small fix in IFCexport
Browse files Browse the repository at this point in the history
  • Loading branch information
yorikvanhavre committed Feb 11, 2016
1 parent fe22e97 commit 6a10349
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/Mod/Arch/importIFC.py
Expand Up @@ -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
Expand Down

0 comments on commit 6a10349

Please sign in to comment.