From 78ddda11a35c1c0452d17053d338e1d24e2cdf7c Mon Sep 17 00:00:00 2001 From: David Daish Date: Wed, 1 Apr 2020 17:19:36 +1300 Subject: [PATCH] Fixed syntax error --- src/Mod/Arch/ArchWall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Arch/ArchWall.py b/src/Mod/Arch/ArchWall.py index fd0ae12bc6..8eb5a78f90 100644 --- a/src/Mod/Arch/ArchWall.py +++ b/src/Mod/Arch/ArchWall.py @@ -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")