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>2010-11-23 19:07:51 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-11-23 19:07:51 +0300
commit8686f46abcaf14a262e03e8811027fe17f3c3d25 (patch)
tree8b51020f5c3ae474ffc396f9d1383ace6ec05fbc /source/blender/python
parentc51d075b0e36cad2c77ddd8d796f1311bb9eaa1f (diff)
fix for typo in mathutils vec.to_track_quat() argument parsing.
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/generic/mathutils_vector.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/generic/mathutils_vector.c b/source/blender/python/generic/mathutils_vector.c
index 4dd2e250804..68cf4c098d8 100644
--- a/source/blender/python/generic/mathutils_vector.c
+++ b/source/blender/python/generic/mathutils_vector.c
@@ -353,7 +353,7 @@ static PyObject *Vector_ToTrackQuat(VectorObject *self, PyObject *args )
case 'X':
up = 0;
break;
- case 'y':
+ case 'Y':
up = 1;
break;
case 'Z':