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>2013-04-15 08:34:14 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-04-15 08:34:14 +0400
commitbe71c46b24179ae1de3cecbca6b546a61888a581 (patch)
tree3e990785c5099cf2759bd66f7aa07a700e4fee4a /source/blender/python
parent8cca2fec82381144eebb6ab98fff17fc84452bce (diff)
code cleanup: minor BMESH_TODO's, some were left in even though they were done/invalid.
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/bmesh/bmesh_py_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/bmesh/bmesh_py_utils.c b/source/blender/python/bmesh/bmesh_py_utils.c
index d66cfaedbb6..55c97b66ffb 100644
--- a/source/blender/python/bmesh/bmesh_py_utils.c
+++ b/source/blender/python/bmesh/bmesh_py_utils.c
@@ -354,7 +354,7 @@ static PyObject *bpy_bm_utils_edge_rotate(PyObject *UNUSED(self), PyObject *args
bm = py_edge->bm;
- e_new = BM_edge_rotate(bm, py_edge->e, do_ccw, 0); /* BMESH_TODO - expose to API */
+ e_new = BM_edge_rotate(bm, py_edge->e, do_ccw, 0);
if (e_new) {
return BPy_BMEdge_CreatePyObject(bm, e_new);