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:
authorJoshua Leung <aligorith@gmail.com>2008-06-02 06:54:33 +0400
committerJoshua Leung <aligorith@gmail.com>2008-06-02 06:54:33 +0400
commit8a2a91ddfe635d2f2d26f1434512b0859811abcc (patch)
treed20b0bbb93fb89589c41867f932ed34fe7ae9f67 /source/blender/python
parent86a0afb8295c2ba6560f8ceb9b35c873b614317e (diff)
Added missing newline for error print in Py-button expressions
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/BPY_interface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/BPY_interface.c b/source/blender/python/BPY_interface.c
index 279c3727442..c63fa28c46e 100644
--- a/source/blender/python/BPY_interface.c
+++ b/source/blender/python/BPY_interface.c
@@ -2103,7 +2103,7 @@ int BPY_button_eval(char *expr, double *value)
if (!bpy_pydriver_Dict) {
if (bpy_pydriver_create_dict() != 0) {
fprintf(stderr,
- "Button Python Eval error: couldn't create Python dictionary");
+ "Button Python Eval error: couldn't create Python dictionary \n");
PyGILState_Release(gilstate);
return -1;
}