From 5187d427bf29b60cfb3733e927051dc4ed69faf1 Mon Sep 17 00:00:00 2001 From: DeepSOIC Date: Mon, 16 Jan 2017 17:54:32 +0300 Subject: [PATCH] Attached array: extension-related fix --- lattice2AttachablePlacement.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lattice2AttachablePlacement.py b/lattice2AttachablePlacement.py index 23d11f6..2a4a6b4 100644 --- a/lattice2AttachablePlacement.py +++ b/lattice2AttachablePlacement.py @@ -100,7 +100,7 @@ class AttachedPlacementSubsequence(lattice2BaseFeature.LatticeFeature): obj.CycleMode = ['Open','Periodic'] def derivedExecute(self,obj): - attacher = obj.Base.Attacher.copy() + attacher = Part.AttachEngine(obj.Base.AttacherType) attacher.readParametersFromFeature(obj.Base) i_filt_str = obj.RefIndexFilter ifilt = None if i_filt_str == "" else [i for i in range(len(i_filt_str)) if int(i_filt_str[i]) != 0]