Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2008-03-29 18:20:41 +0300
committerCampbell Barton <ideasman42@gmail.com>2008-03-29 18:20:41 +0300
commit68f1f2b08dbadbb20f86c7ed7d62ab731c57515d (patch)
tree59281ae8b4609f4dd4c16073a576534373eca347 /source/blender/python/api2_2x/sceneRender.c
parent73ca8a6fbf300b1545075007b0fe9e51f6035ebb (diff)
own typo in py api
Diffstat (limited to 'source/blender/python/api2_2x/sceneRender.c')
-rw-r--r--source/blender/python/api2_2x/sceneRender.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/sceneRender.c b/source/blender/python/api2_2x/sceneRender.c
index da1fd7718c9..b12ee85fe2b 100644
--- a/source/blender/python/api2_2x/sceneRender.c
+++ b/source/blender/python/api2_2x/sceneRender.c
@@ -3798,7 +3798,7 @@ static PyObject *M_Render_BakeNormalSpaceDict( void )
BPy_constant *d = ( BPy_constant * ) M;
PyConstant_Insert( d, "CAMERA", PyInt_FromLong( R_BAKE_SPACE_CAMERA ) );
- PyConstant_Insert( d, "WORLS", PyInt_FromLong( R_BAKE_SPACE_WORLD ) );
+ PyConstant_Insert( d, "WORLD", PyInt_FromLong( R_BAKE_SPACE_WORLD ) );
PyConstant_Insert( d, "OBJECT", PyInt_FromLong( R_BAKE_SPACE_OBJECT ) );
PyConstant_Insert( d, "TANGENT", PyInt_FromLong( R_BAKE_SPACE_TANGENT ) );
}