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>2011-12-26 04:42:35 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-12-26 04:42:35 +0400
commitf48fb385ea8dc6b12e12a6ec46a0c0b55d2dfcc4 (patch)
tree08b8483091b36b5efe7513a1f2301aacc6a79cc6 /source/blender/python/mathutils/mathutils_Euler.c
parent65104d49e010dffa3c37be509be919d183d88ac5 (diff)
formatting edits & minor corrections
Diffstat (limited to 'source/blender/python/mathutils/mathutils_Euler.c')
-rw-r--r--source/blender/python/mathutils/mathutils_Euler.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/mathutils/mathutils_Euler.c b/source/blender/python/mathutils/mathutils_Euler.c
index 02ed208b35d..66caed50aa9 100644
--- a/source/blender/python/mathutils/mathutils_Euler.c
+++ b/source/blender/python/mathutils/mathutils_Euler.c
@@ -198,7 +198,7 @@ static PyObject *Euler_rotate_axis(EulerObject *self, PyObject *args)
float angle = 0.0f;
int axis; /* actually a character */
- if (!PyArg_ParseTuple(args, "Cf:rotate", &axis, &angle)) {
+ if (!PyArg_ParseTuple(args, "Cf:rotate_axis", &axis, &angle)) {
PyErr_SetString(PyExc_TypeError,
"Euler.rotate_axis(): "
"expected an axis 'X', 'Y', 'Z' and an angle (float)");