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:
authorWillian Padovani Germano <wpgermano@gmail.com>2003-05-09 08:34:40 +0400
committerWillian Padovani Germano <wpgermano@gmail.com>2003-05-09 08:34:40 +0400
commit81d2589d6a5af1e59125a7897e70638b420e5dc7 (patch)
treec5cad60a54161f9f8b8426504efd6003e3652bf5 /source/blender/python/api2_2x/Image.c
parentceeb5e75685be981e206a9cf82568d8ac2459f3a (diff)
* Implement Blender_Redraw(), minor changes in other files
* Implemented submodule Text
Diffstat (limited to 'source/blender/python/api2_2x/Image.c')
-rw-r--r--source/blender/python/api2_2x/Image.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/python/api2_2x/Image.c b/source/blender/python/api2_2x/Image.c
index 03e9557c6e9..2449de31750 100644
--- a/source/blender/python/api2_2x/Image.c
+++ b/source/blender/python/api2_2x/Image.c
@@ -116,13 +116,13 @@ static PyObject *M_Image_Load(PyObject *self, PyObject *args)
/*****************************************************************************/
PyObject *M_Image_Init (void)
{
- PyObject *module;
+ PyObject *submodule;
printf ("In M_Image_Init()\n");
- module = Py_InitModule3("Image", M_Image_methods, M_Image_doc);
+ submodule = Py_InitModule3("Blender.Image", M_Image_methods, M_Image_doc);
- return (module);
+ return (submodule);
}
/*****************************************************************************/