Skip to content

Commit

Permalink
Tools: Small additional fix in fcinfo tool
Browse files Browse the repository at this point in the history
  • Loading branch information
yorikvanhavre committed Jul 27, 2019
1 parent b351c3d commit 1919659
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Tools/fcinfo
Expand Up @@ -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):
Expand Down

0 comments on commit 1919659

Please sign in to comment.