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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2017-10-24 03:04:58 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2017-10-24 03:05:41 +0300
commitf5456df095291c6cb2d0223a179746c8e514cd15 (patch)
tree76384b0c91806c95d55b007850ee225889a3250e /source/blender/python
parent254daf8f8c276a4e5292e5a12fcfa88296131878 (diff)
parent070a668d04844610059aaedc80c49e9038fd1779 (diff)
Merge branch 'master' into blender2.8
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 caf836fa5b8..8ab46240eed 100644
--- a/source/blender/python/bmesh/bmesh_py_types.c
+++ b/source/blender/python/bmesh/bmesh_py_types.c
@@ -1469,7 +1469,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;
}
}