Draft: fixed typo

This commit is contained in:
Yorik van Havre 2013-11-24 18:02:48 -02:00
parent b8eb776179
commit 816cee5f55

View File

@ -1040,7 +1040,7 @@ def connect(edges,closed=False):
nedges.append(Part.Line(v1,v2).toShape())
elif geomType(curr) == "Circle":
if v1 != v2:
nedges.append(Part.Arc(v1,findMidPoint(curr),v2))
nedges.append(Part.Arc(v1,findMidpoint(curr),v2))
try:
return Part.Wire(nedges)
except: