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>2014-01-30 09:45:20 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-01-30 09:45:20 +0400
commitbd697dd4d7e3b753aa18a1767e20c80d52f65aa4 (patch)
tree4dd317f0ef089bef74b2a370a2299b6a33f37a09 /source/blender/python/bmesh
parent6e479b18ef088251d0124a4a95c020fb2e579afd (diff)
Fix T38402: invalid message for bad type assignments (Quat, Vector)
Diffstat (limited to 'source/blender/python/bmesh')
-rw-r--r--source/blender/python/bmesh/bmesh_py_types_meshdata.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/bmesh/bmesh_py_types_meshdata.c b/source/blender/python/bmesh/bmesh_py_types_meshdata.c
index e9ee53c9b9c..7edbf724ed7 100644
--- a/source/blender/python/bmesh/bmesh_py_types_meshdata.c
+++ b/source/blender/python/bmesh/bmesh_py_types_meshdata.c
@@ -550,7 +550,7 @@ static int bpy_bmdeformvert_ass_subscript(BPy_BMDeformVert *self, PyObject *key,
if (f == -1 && PyErr_Occurred()) { // parsed key not a number
PyErr_SetString(PyExc_TypeError,
"BMDeformVert[key] = x: "
- "argument not a number");
+ "assigned value not a number");
return -1;
}