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>2009-11-13 14:10:29 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-11-13 14:10:29 +0300
commit5a322bd67cf1f99b4d8fc26e50edb22904f58b9e (patch)
tree4739ef0abd2ce0dd110f93742e3faf9e7543fba7 /source/blender/python/intern/bpy_ui.c
parentb17964af11a1acab393ac2d51b2b0bd55a8c127c (diff)
F8 reload works again, script errors are printed but dont stop loading every other script
Diffstat (limited to 'source/blender/python/intern/bpy_ui.c')
-rw-r--r--source/blender/python/intern/bpy_ui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/intern/bpy_ui.c b/source/blender/python/intern/bpy_ui.c
index f03a83bee9c..ab50ebd8bd5 100644
--- a/source/blender/python/intern/bpy_ui.c
+++ b/source/blender/python/intern/bpy_ui.c
@@ -48,7 +48,7 @@ static struct PyMethodDef ui_methods[] = {
static struct PyModuleDef ui_module = {
PyModuleDef_HEAD_INIT,
- "bpy.ui",
+ "_bpy.ui",
"",
-1,/* multiple "initialization" just copies the module dict. */
ui_methods,