From 1919659fad2e59d28758f910f4fd01e2ee64c0bb Mon Sep 17 00:00:00 2001 From: Yorik van Havre Date: Sat, 27 Jul 2019 15:59:03 -0300 Subject: [PATCH] Tools: Small additional fix in fcinfo tool --- src/Tools/fcinfo | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Tools/fcinfo b/src/Tools/fcinfo index 01a6d3e601..9079d345d0 100755 --- a/src/Tools/fcinfo +++ b/src/Tools/fcinfo @@ -108,7 +108,9 @@ class FreeCADFileHandler(xml.sax.ContentHandler): self.contents[self.obj] += " (" + s + ")" elif tag == "Property": - self.prop = attributes["name"] + self.prop = None + if attributes["name"] not in ["Symbol"]: + self.prop = attributes["name"] elif tag in ["String","Uuid","Float","Integer","Bool","Link"]: if self.prop and ("value" in attributes):