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-10-23 13:57:32 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-10-23 13:57:32 +0300
commit1aa5b63661a182957788cc8cbe6fa922ca376a6e (patch)
tree655a9281842543a2dc6524580ba2f06db29e19df /source/blender/python
parentaf067f2305ac3b07620c1e504f463344774d2c0b (diff)
Docs: improve bmesh exception message
Suggested in T53131
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/bmesh/bmesh_py_types.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/bmesh/bmesh_py_types.c b/source/blender/python/bmesh/bmesh_py_types.c
index 52ca475297d..9f184059a49 100644
--- a/source/blender/python/bmesh/bmesh_py_types.c
+++ b/source/blender/python/bmesh/bmesh_py_types.c
@@ -1465,7 +1465,7 @@ static PyObject *bpy_bmvert_calc_edge_angle(BPy_BMVert *self, PyObject *args)
else {
PyErr_SetString(PyExc_ValueError,
"BMVert.calc_edge_angle(): "
- "vert doesn't use 2 edges");
+ "vert must connect to exactly 2 edges");
return NULL;
}
}