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-08-25 21:59:37 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-08-25 21:59:37 +0400
commit291ae8822d5ff2fafbb53568c040828058cee0db (patch)
tree6aa1e00a729e9f8478e1d9682195f8aed532cb40 /release/scripts
parent9436769cd45f1c63ef6764d86b1fbfefe408ad2f (diff)
executing operators that changed the context from the console wasnt returning an operator set/flag.
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/modules/console_python.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/modules/console_python.py b/release/scripts/modules/console_python.py
index 455eabe377b..425ea210104 100644
--- a/release/scripts/modules/console_python.py
+++ b/release/scripts/modules/console_python.py
@@ -179,7 +179,7 @@ def execute(context):
# special exception. its possible the command loaded a new user interface
if hash(sc) != hash(context.space_data):
- return
+ return {'FINISHED'}
bpy.ops.console.scrollback_append(text=sc.prompt + line, type='INPUT')