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 /object_animrenderbake.py
parent0fcd2037beda8c2ce5fbd29700b1fc5545a29d28 (diff)
use identity comparison with None (as suggested by python)
Diffstat (limited to 'object_animrenderbake.py')
-rw-r--r--object_animrenderbake.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/object_animrenderbake.py b/object_animrenderbake.py
index c72fcc9b..6a9efdc7 100644
--- a/object_animrenderbake.py
+++ b/object_animrenderbake.py
@@ -85,7 +85,7 @@ class OBJECT_OT_animrenderbake(bpy.types.Operator):
img = uvdata.image
break
- if img == None:
+ if img is None:
self.report({'ERROR'}, "No valid image found to bake to")
return {'CANCELLED'}