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
path: root/rigify
diff options
context:
space:
mode:
authorNathan Vegdahl <cessen@cessen.com>2011-06-24 01:45:38 +0400
committerNathan Vegdahl <cessen@cessen.com>2011-06-24 01:45:38 +0400
commit967056afc369cf28e3cda24a57fcfca5bb46849f (patch)
treede3150a7983353ba302fb7b758d1d5b53e0a0115 /rigify
parent653ccca3171d69d9b49f340f405de6ce5f981661 (diff)
Rigify: bug fix, trying assign invalid group.
Diffstat (limited to 'rigify')
-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