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:
authorCampbell Barton <ideasman42@gmail.com>2011-03-29 07:54:27 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-03-29 07:54:27 +0400
commit1d838454afb884cf7b288afc7b6915c779230ecb (patch)
treea8d433cd705f8f3b47e3bb272daccea320f66dba /rigify/rigs/biped/leg/fk.py
parent0fcd2037beda8c2ce5fbd29700b1fc5545a29d28 (diff)
use identity comparison with None (as suggested by python)
Diffstat (limited to 'rigify/rigs/biped/leg/fk.py')
-rw-r--r--rigify/rigs/biped/leg/fk.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/rigify/rigs/biped/leg/fk.py b/rigify/rigs/biped/leg/fk.py
index bc7a8dbd..e231fa8e 100644
--- a/rigify/rigs/biped/leg/fk.py
+++ b/rigify/rigs/biped/leg/fk.py
@@ -59,7 +59,7 @@ class Rig:
else:
heel = b.name
- if foot == None or heel == None:
+ if foot is None or heel is None:
raise MetarigError("RIGIFY ERROR: Bone '%s': incorrect bone configuration for rig type." % (strip_org(bone)))
# Get the toe
@@ -69,13 +69,13 @@ class Rig:
toe = b.name
# Get the toe
- if toe == None:
+ if toe is None:
raise MetarigError("RIGIFY ERROR: Bone '%s': incorrect bone configuration for rig type." % (strip_org(bone)))
self.org_bones = leg_bones + [foot, toe, heel]
# Get (optional) parent
- if self.obj.data.bones[bone].parent == None:
+ if self.obj.data.bones[bone].parent is None:
self.org_parent = None
else:
self.org_parent = self.obj.data.bones[bone].parent.name