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-08-20 14:14:11 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-08-20 14:14:11 +0400
commit4a6395cc21bca5f5b24ea4c305f24482a0eb2144 (patch)
tree5b949c8fd1cd011b8cc5a739472e7f1d7c6dace6 /source/blender/python
parent65d5a818b52ade5f0d9ac00d1621100bc0f57707 (diff)
fix for own error in bpy.utils.blend_paths() arg parsing.
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/intern/bpy.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/python/intern/bpy.c b/source/blender/python/intern/bpy.c
index 4d5c02dad68..0f0250fb8d5 100644
--- a/source/blender/python/intern/bpy.c
+++ b/source/blender/python/intern/bpy.c
@@ -115,12 +115,12 @@ static PyObject *bpy_blend_paths(PyObject *UNUSED(self), PyObject *args, PyObjec
PyObject *list;
int absolute = FALSE;
- int packed = FALSE;
- int local = FALSE;
+ int packed = FALSE;
+ int local = FALSE;
static const char *kwlist[] = {"absolute", "packed", "local", NULL};
- if (!PyArg_ParseTupleAndKeywords(args, kw, "|ii:blend_paths",
- (char **)kwlist, &absolute, &packed))
+ if (!PyArg_ParseTupleAndKeywords(args, kw, "|iii:blend_paths",
+ (char **)kwlist, &absolute, &packed, &local))
{
return NULL;
}