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/rigs/basic/copy.py')
-rw-r--r--rigify/rigs/basic/copy.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rigify/rigs/basic/copy.py b/rigify/rigs/basic/copy.py
index d430113b..6a8800b2 100644
--- a/rigify/rigs/basic/copy.py
+++ b/rigify/rigs/basic/copy.py
@@ -85,8 +85,8 @@ class Rig:
""" Add the parameters of this rig type to the
RigifyParameters PropertyGroup
"""
- group.make_control = bpy.props.BoolProperty(name="Control", default=True, description="Create a control bone for the copy.")
- group.make_deform = bpy.props.BoolProperty(name="Deform", default=True, description="Create a deform bone for the copy.")
+ group.make_control = bpy.props.BoolProperty(name="Control", default=True, description="Create a control bone for the copy")
+ group.make_deform = bpy.props.BoolProperty(name="Deform", default=True, description="Create a deform bone for the copy")
@classmethod