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>2011-04-12 16:09:38 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-04-12 16:09:38 +0400
commitba03e5023ebd2d1d5db4d57a0046ce58f699d334 (patch)
tree6f3c6a11f7689fb62f5eb7673660dca47644d688 /release
parenta42bf453335bdd569556895a168bced1fa7b3c3c (diff)
less alarming warnings about the python api not being stable in online docs and remove from interactive console.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/modules/console_python.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/modules/console_python.py b/release/scripts/modules/console_python.py
index 274faac9f33..3048fa1d597 100644
--- a/release/scripts/modules/console_python.py
+++ b/release/scripts/modules/console_python.py
@@ -296,11 +296,11 @@ def banner(context):
add_scrollback("Execute: Enter", 'OUTPUT')
add_scrollback("Autocomplete: Ctrl+Space", 'OUTPUT')
add_scrollback("Ctrl +/- Wheel: Zoom", 'OUTPUT')
- add_scrollback("Builtin Modules: bpy, bpy.data, bpy.ops, bpy.props, bpy.types, bpy.context, bgl, blf, mathutils", 'OUTPUT')
+ add_scrollback("Builtin Modules: bpy, bpy.data, bpy.ops, bpy.props, bpy.types, bpy.context, bpy.utils, bgl, blf, mathutils", 'OUTPUT')
add_scrollback("Convenience Imports: from mathutils import *; from math import *", 'OUTPUT')
add_scrollback("", 'OUTPUT')
- add_scrollback(" WARNING!!! Blender 2.5 API is subject to change, see API reference for more info.", 'ERROR')
- add_scrollback("", 'OUTPUT')
+ # add_scrollback(" WARNING!!! Blender 2.5 API is subject to change, see API reference for more info.", 'ERROR')
+ # add_scrollback("", 'OUTPUT')
sc.prompt = PROMPT
return {'FINISHED'}