Fixed typo

This commit is contained in:
Markus Lampert
2018-09-01 12:35:51 -07:00
committed by wmayer
parent 811b93eb18
commit 6fa080a818

View File

@@ -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)