Added missing newline for error print in Py-button expressions

This commit is contained in:
2008-06-02 02:54:33 +00:00
parent 86a0afb829
commit 8a2a91ddfe

View File

@@ -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;
}