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>2017-09-09 03:14:53 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-09-09 03:15:16 +0300
commit3930e46e37b58e1ff8d246dc4fb29d7ec5821ed8 (patch)
tree807f5b140a96f7b72c85d687f5b8f410b81383d4 /source/blender/python
parent002cc6aef3714023016f9e6d01428e8da5cf9495 (diff)
Correct last commit
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/mathutils/mathutils_Vector.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/mathutils/mathutils_Vector.c b/source/blender/python/mathutils/mathutils_Vector.c
index f53a454d2cf..e48690a80fe 100644
--- a/source/blender/python/mathutils/mathutils_Vector.c
+++ b/source/blender/python/mathutils/mathutils_Vector.c
@@ -2751,7 +2751,7 @@ static PyGetSetDef Vector_getseters[] = {
* set_str = 'Vector_swizzle_set' if (len(set(key)) == len(key)) else 'NULL'
* key_args = ', '.join(["'%s'" % c for c in key.upper()])
* print('\t{(char *)"%s", %s(getter)Vector_swizzle_get, (setter)%s, NULL, SWIZZLE%d(%s)},' %
- * (len(key), key, (' ' * (4 - len(key))), set_str, key_args))
+ * (key, (' ' * (4 - len(key))), set_str, len(key), key_args))
* unique.add(num)
*
* if len(unique) != len(items):