From 21e99d0bd6b6a71cbf871cc4aaf6f2b744cd3d14 Mon Sep 17 00:00:00 2001 From: Nathan Vegdahl Date: Sat, 16 Feb 2013 18:22:20 +0000 Subject: Rigify: updated naming schemes for control bones. This required changes to both the default human metarig and some of the rig types. This updates the naming scheme to match new best-practices, as per the CGCookie Flexrig. --- rigify/ui.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rigify/ui.py') diff --git a/rigify/ui.py b/rigify/ui.py index 40121cdc..f2a88a12 100644 --- a/rigify/ui.py +++ b/rigify/ui.py @@ -21,7 +21,7 @@ import bpy from bpy.props import StringProperty -from .utils import get_rig_type +from .utils import get_rig_type, MetarigError from . import rig_lists from . import generate @@ -263,7 +263,7 @@ class Generate(bpy.types.Operator): context.user_preferences.edit.use_global_undo = False try: generate.generate_rig(context, context.object) - except rigify.utils.MetarigError as rig_exception: + except MetarigError as rig_exception: rigify_report_exception(self, rig_exception) finally: context.user_preferences.edit.use_global_undo = use_global_undo -- cgit v1.2.3