From 6285969e7ec2f723cc1fb211a7c4b97d00a4cdf4 Mon Sep 17 00:00:00 2001 From: Yorik van Havre Date: Thu, 14 Mar 2024 15:29:39 +0100 Subject: [PATCH] Fixed print() bug --- ifc_geometry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ifc_geometry.py b/ifc_geometry.py index 04c3c5a..0885009 100644 --- a/ifc_geometry.py +++ b/ifc_geometry.py @@ -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