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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2012-08-29 04:53:29 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2012-08-29 04:53:29 +0400
commit141dd5233ede83a6d3882713c95bba47cee90a68 (patch)
tree23cdf3e596bba784d101f9e32f234b399ffba4b1 /source/blender/python/intern/bpy.c
parent22b30da565de53a0a1d34079d72b08fdb54ec8e3 (diff)
parent8321acaf439b33cca0b054565be176047d289134 (diff)
Merged changes in the trunk up to revision 50257.
Conflicts resolved: source/blender/blenkernel/CMakeLists.txt
Diffstat (limited to 'source/blender/python/intern/bpy.c')
-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 5511673481e..38d082346d8 100644
--- a/source/blender/python/intern/bpy.c
+++ b/source/blender/python/intern/bpy.c
@@ -117,12 +117,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;
}