From 2b4158addc87efecf6198ec61bd2220bd28650d3 Mon Sep 17 00:00:00 2001 From: Russell Johnson <47639332+Russ4262@users.noreply.github.com> Date: Fri, 19 Feb 2021 21:15:24 -0600 Subject: [PATCH] Path: Fix incorrect empty data type return --- src/Mod/Path/PathScripts/PathProfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Path/PathScripts/PathProfile.py b/src/Mod/Path/PathScripts/PathProfile.py index 948c1dec56..faac61a9f7 100644 --- a/src/Mod/Path/PathScripts/PathProfile.py +++ b/src/Mod/Path/PathScripts/PathProfile.py @@ -936,7 +936,7 @@ class ObjectProfile(PathAreaOp.ObjectOp): osArea = ofstShp.Area except Exception as ee: PathLog.error('No area to offset shape returned.\n{}'.format(ee)) - return False + return list() self._addDebugObject('OffsetShape', ofstShp)