Skip to content

Commit

Permalink
Merge pull request #2315 from Russ4262/pathpocket_fix
Browse files Browse the repository at this point in the history
[Path] PathPocket: Fix SetupProperties() syntax issue
  • Loading branch information
sliptonic committed Jul 2, 2019
2 parents 56918fd + af82525 commit 651b356
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions src/Mod/Path/PathScripts/PathPocket.py
Expand Up @@ -21,12 +21,6 @@
# * USA *
# * *
# ***************************************************************************
# * *
# * Additional modifications and contributions beginning 2019 *
# * Focus: improve 3D facial pockets *
# * by Russell Johnson <russ4262@gmail.com> *
# * *
# ***************************************************************************

import FreeCAD
import Part
Expand All @@ -43,8 +37,8 @@
__doc__ = "Class and implementation of the 3D Pocket operation."
__contributors__ = "russ4262 (Russell Johnson)"
__created__ = "2014"
__scriptVersion__ = "1a testing"
__lastModified__ = "2019-06-28 23:45 CST"
__scriptVersion__ = "1b testing"
__lastModified__ = "2019-07-01 20:13 CST"

LOGLEVEL = False

Expand Down Expand Up @@ -134,7 +128,7 @@ def areaOpSetDefaultValues(self, obj, job):


def SetupProperties():
return PathPocketBase.SetupProperties().append("HandleMultipleFeatures")
return PathPocketBase.SetupProperties() + ["HandleMultipleFeatures"]


def Create(name, obj=None):
Expand Down

0 comments on commit 651b356

Please sign in to comment.