Fixed syntax error

This commit is contained in:
David Daish
2020-04-01 17:19:36 +13:00
committed by Yorik van Havre
parent a1ae74a26b
commit 78ddda11a3

View File

@@ -366,7 +366,7 @@ class _CommandWall:
elif len(self.points) == 2:
import Part
l = Part.LineSegment(FreeCAD.DraftWorkingPlane.getLocalCoords(self.points[0]),
FreeCAD.DraftWorkingPlane.getLocalCoords(self.points[1])
FreeCAD.DraftWorkingPlane.getLocalCoords(self.points[1]))
self.tracker.finalize()
FreeCAD.ActiveDocument.openTransaction(translate("Arch","Create Wall"))
FreeCADGui.addModule("Arch")