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 /source/blender/python
parent9436769cd45f1c63ef6764d86b1fbfefe408ad2f (diff)
executing operators that changed the context from the console wasnt returning an operator set/flag.
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/intern/bpy_rna.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/intern/bpy_rna.c b/source/blender/python/intern/bpy_rna.c
index a3ff4314002..b83626bc3e9 100644
--- a/source/blender/python/intern/bpy_rna.c
+++ b/source/blender/python/intern/bpy_rna.c
@@ -6428,7 +6428,7 @@ static int bpy_class_call(bContext *C, PointerRNA *ptr, FunctionRNA *func, Param
PyErr_Fetch(&error_type, &error_value, &error_traceback);
PyErr_Format(error_type,
- "expected class %.200s, function %.200s: incompatible return value%S",
+ "class %.200s, function %.200s: incompatible return value%S",
RNA_struct_identifier(ptr->type), RNA_function_identifier(func),
error_value);
}