Skip to content

Commit

Permalink
Fixed print() bug
Browse files Browse the repository at this point in the history
  • Loading branch information
yorikvanhavre committed Mar 14, 2024
1 parent d8a69ce commit 383302e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ifc_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -429,8 +429,8 @@ def print_debug(obj):
return
if element.is_a("IfcSpatialStructureElement"):
return
print(
"DEBUG: No Shape returned for element {}, {}, {}".format(
FreeCAD.Console.PrintLog(
"DEBUG: No Shape returned for element {}, {}, {}\n".format(
element.id(), element.is_a(), getattr(element, "Name", "")
)
)
Expand Down

0 comments on commit 383302e

Please sign in to comment.