From 918daad31d916d2451e9b55fe8a963d1e0769a00 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")