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:
Diffstat (limited to 'release/scripts/modules/console_python.py')
-rw-r--r--release/scripts/modules/console_python.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/release/scripts/modules/console_python.py b/release/scripts/modules/console_python.py
index 6c49283b3e1..4ddde0de17c 100644
--- a/release/scripts/modules/console_python.py
+++ b/release/scripts/modules/console_python.py
@@ -246,7 +246,7 @@ def autocomplete(context):
line=line,
cursor=current_line.current_character,
namespace=console.locals,
- private=bpy.app.debug)
+ private=bpy.app.debug_python)
line_new = result[0]
current_line.body, current_line.current_character, scrollback = result
@@ -306,9 +306,6 @@ def banner(context):
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')
sc.prompt = PROMPT
return {'FINISHED'}