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-03-19 01:45:29 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-03-19 01:45:29 +0400
commit29b7b344fc48ed31b1e36818ab4767090691d6e2 (patch)
tree2c7496c8c656565d2ac6dc0901e1af66f8565101 /source/blender/python/intern/bpy.c
parentc1ceab1281ccf061f03f8000bf190a082a5385d8 (diff)
parent7bfef29f2f2a1b262d28abdc6e30fcd9c1f1caad (diff)
svn merge ^/trunk/blender -r55357:55372
Diffstat (limited to 'source/blender/python/intern/bpy.c')
-rw-r--r--source/blender/python/intern/bpy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/intern/bpy.c b/source/blender/python/intern/bpy.c
index 01567a87fdf..c3845cdb07f 100644
--- a/source/blender/python/intern/bpy.c
+++ b/source/blender/python/intern/bpy.c
@@ -226,7 +226,7 @@ static PyMethodDef meth_bpy_resource_path =
static PyObject *bpy_import_test(const char *modname)
{
- PyObject *mod = PyImport_ImportModuleLevel((char *)modname, NULL, NULL, NULL, 0);
+ PyObject *mod = PyImport_ImportModuleLevel(modname, NULL, NULL, NULL, 0);
if (mod) {
Py_DECREF(mod);
}