소스 검색

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: