瀏覽代碼

Fix bug in parser

Joeri Exelmans 2 年之前
父節點
當前提交
5d4266e8f1
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      drawio2py/parser.py

+ 1 - 1
drawio2py/parser.py

@@ -107,7 +107,7 @@ class Parser:
 			source = croot.attrib.get("source", None)
 			target = croot.attrib.get("target", None)
 
-			return Edge(cid, value, parent, [], {}, style, atts, geom, source, target)
+			return Edge(cid, value, parent, [], properties, style, atts, geom, source, target)
 
 		geom = Parser.parse_cell_geometry(croot.find(".//mxGeometry"))
 		if geom != None: