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-23 09:17:07 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-23 09:17:07 +0400
commit38f546a614a2e52f284ebce64b9bcf6f287128b5 (patch)
treea2f126604979ee42014aad3180a76b93944e42e3 /source/blender/python/intern
parentd2328154810ec6e4b477ab937908060b237f596e (diff)
swap arg order for BM_edge_split(), makes sense to have edge as first
arg.
Diffstat (limited to 'source/blender/python/intern')
-rw-r--r--source/blender/python/intern/bpy_rna.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/intern/bpy_rna.c b/source/blender/python/intern/bpy_rna.c
index b3053c2dbb0..8fdf061a0e3 100644
--- a/source/blender/python/intern/bpy_rna.c
+++ b/source/blender/python/intern/bpy_rna.c
@@ -2836,7 +2836,7 @@ static int pyrna_prop_collection_contains(BPy_PropertyRNA *self, PyObject *key)
if (keyname == NULL) {
PyErr_SetString(PyExc_TypeError,
- "bpy_prop_collection.__contains__: expected a string or a typle of strings");
+ "bpy_prop_collection.__contains__: expected a string or a tuple of strings");
return -1;
}