Skip to content

Commit 865cab9

Browse files
committed
Fix compatibility with future kicad testing build
Fixes #420
1 parent 3fe22d9 commit 865cab9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

InteractiveHtmlBom/ecad/kicad.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,8 +258,7 @@ def parse_text(self, d):
258258
"svgpath": create_path(lines)
259259
}
260260
elif hasattr(d, 'GetEffectiveTextShape'):
261-
shape = d.GetEffectiveTextShape(
262-
aTriangulate=False) # type: pcbnew.SHAPE_COMPOUND
261+
shape = d.GetEffectiveTextShape(False) # type: pcbnew.SHAPE_COMPOUND
263262
segments = []
264263
polygons = []
265264
for s in shape.GetSubshapes():

0 commit comments

Comments
 (0)