Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'rigify/utils.py')
-rw-r--r--rigify/utils.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/rigify/utils.py b/rigify/utils.py
index 44f3e249..311ef24d 100644
--- a/rigify/utils.py
+++ b/rigify/utils.py
@@ -380,12 +380,13 @@ def copy_attributes(a, b):
for key in keys:
if not key.startswith("_") \
and not key.startswith("error_") \
+ and key != "group" \
and key != "is_valid" \
and key != "rna_type" \
and key != "bl_rna":
try:
setattr(b, key, getattr(a, key))
- except AttributeError:
+ except AttributeError as e:
pass