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:
authorNathan Letwory <nathan@letworyinteractive.com>2004-08-14 13:20:38 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2004-08-14 13:20:38 +0400
commit2ea5ce017ecdce26bdd78ef5fed198d929311add (patch)
tree1a8eda8d536122d491f4675b19a4c0a91da33d0a /source/blender/python/api2_2x/Object.c
parent012854ae9323aadc4b0345c9ebd3260a636dd85b (diff)
Fix two problems in my code as reported on Forums and in release article thread on frontpage:
* Quaternion action ipos accidently got swapped in the Ipo module * Ipos not editable if not linked to a datablock (was possible in 2.33a) Also fixed a typo in Object.getMatrix(): localespace -> localspace And I add: * channels Key 32 through Key 63 for relative vertex keys
Diffstat (limited to 'source/blender/python/api2_2x/Object.c')
-rw-r--r--source/blender/python/api2_2x/Object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/Object.c b/source/blender/python/api2_2x/Object.c
index d150af636ef..5d9d6de1ad8 100644
--- a/source/blender/python/api2_2x/Object.c
+++ b/source/blender/python/api2_2x/Object.c
@@ -952,7 +952,7 @@ static PyObject *Object_getMatrix (BPy_Object *self, PyObject *args)
object_to_mat4(self->object, *((MatrixObject*)matrix)->matrix);
} else {
return (EXPP_ReturnPyObjError (PyExc_RuntimeError,
- "correct spaces are 'worldspace' and 'localspace', none defaults to localespace"));
+ "correct spaces are 'worldspace' and 'localspace', none defaults to 'localspace'"));
}
return matrix;
}