Skip to content
Snippets Groups Projects
Commit 33ad2771 authored by Campbell Barton's avatar Campbell Barton
Browse files

fix for bad operator return value

parent f9e21740
No related branches found
No related tags found
No related merge requests found
......@@ -295,7 +295,7 @@ class OBJECT_OT_create_lightfield_rig(bpy.types.Operator):
else:
self.createLightfieldEmitter(textured=False)
return 'FINISHED'
return {'FINISHED'}
......@@ -389,7 +389,7 @@ class OBJECT_OT_create_lightfield_basemesh(bpy.types.Operator):
mesh.from_pydata(verts, [], [])
self.addMeshObj(mesh)
return 'FINISHED'
return {'FINISHED'}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment