From 6fa080a81880536bbfdbd55a91c5aed797974035 Mon Sep 17 00:00:00 2001 From: Markus Lampert Date: Sat, 1 Sep 2018 12:35:51 -0700 Subject: [PATCH] Fixed typo --- src/Mod/Path/PathScripts/PathProfileContour.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Path/PathScripts/PathProfileContour.py b/src/Mod/Path/PathScripts/PathProfileContour.py index 24224c6a3b..de1bcc07ab 100644 --- a/src/Mod/Path/PathScripts/PathProfileContour.py +++ b/src/Mod/Path/PathScripts/PathProfileContour.py @@ -98,7 +98,7 @@ class ObjectContour(PathProfileBase.ObjectProfile): return [(f.extrude(FreeCAD.Vector(0, 0, thickness)), False)] if not isPanel: - return [(PathUtils.getEnvelope(partshape=base.Shape, subshape=None, depthparams=self.depthparams), False) for base in self.base if hasattr(base, 'Shape')] + return [(PathUtils.getEnvelope(partshape=base.Shape, subshape=None, depthparams=self.depthparams), False) for base in self.model if hasattr(base, 'Shape')] def areaOpAreaParams(self, obj, isHole): params = self.baseObject().areaOpAreaParams(obj, isHole)