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 383302e commit 6285969
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ifc_geometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,5 +277,5 @@ def set_geom_property(obj, prop):
changed = set_attribute(ifcfile, elem, prop, value)

if changed:
FreeCAD.Console.PrintLog("DEBUG: Changing prop", obj.Label, ":", prop, "to", getattr(obj, prop))
FreeCAD.Console.PrintLog("DEBUG: Changing prop" + obj.Label + ":" + str(prop) + "to" + str(getattr(obj, prop)) + "\n")
return changed

0 comments on commit 6285969

Please sign in to comment.