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>2012-02-22 14:41:07 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-22 14:41:07 +0400
commite0a6d273d015d1196661da010b676acdf5d4baf5 (patch)
tree1cccaf4f7f4d733620223dc14b626eba1a8d3c8b /source/blender/python/bmesh/bmesh_py_api.c
parente7d98179eabcb44d8042d85b3be55f604833a088 (diff)
bmesh py api - generalize bmesg sequences to use the iterator type and optionally another bmesh element.
This allows BMFace.verts to be added without defining a new sequence type.
Diffstat (limited to 'source/blender/python/bmesh/bmesh_py_api.c')
-rw-r--r--source/blender/python/bmesh/bmesh_py_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/bmesh/bmesh_py_api.c b/source/blender/python/bmesh/bmesh_py_api.c
index 8534bbefd3b..ec3c5927457 100644
--- a/source/blender/python/bmesh/bmesh_py_api.c
+++ b/source/blender/python/bmesh/bmesh_py_api.c
@@ -75,7 +75,7 @@ PyDoc_STRVAR(BPy_BM_doc,
);
static struct PyModuleDef BPy_BM_module_def = {
PyModuleDef_HEAD_INIT,
- "bme", /* m_name */
+ "bmesh", /* m_name */
BPy_BM_doc, /* m_doc */
0, /* m_size */
BPy_BM_methods, /* m_methods */