Skip to content

Commit

Permalink
Arch: importIFCHelper: Fix spurious message
Browse files Browse the repository at this point in the history
  • Loading branch information
haraldg authored and yorikvanhavre committed Jun 15, 2020
1 parent 8679bdb commit 7cbed52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/Arch/importIFCHelper.py
Expand Up @@ -641,7 +641,7 @@ def getCurveSet(ent):
for el in elts:
if el.is_a("IfcPolyline"):
result.append(getPolyline(el))
if el.is_a("IfcRectangleProfileDef"):
elif el.is_a("IfcRectangleProfileDef"):
result.append(getRectangle(el))
elif el.is_a("IfcLine"):
result.append(getLine(el))
Expand Down

0 comments on commit 7cbed52

Please sign in to comment.