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:
authorBastien Montagne <b.mont29@gmail.com>2019-11-07 18:20:00 +0300
committerBastien Montagne <b.mont29@gmail.com>2019-11-07 18:20:00 +0300
commit50dc5648f53066824086497dd88722b5589c7120 (patch)
tree3a51cf5d749ea77be48b95b55147e69fb427622d /source/blender/python
parent4ab0b2b5aad9f1a6f23ee501bb577227706eb367 (diff)
parent74af6987699a5064cb95d15b6bd318d1ea2f5976 (diff)
Merge branch 'blender-v2.81-release'
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/intern/bpy_msgbus.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/python/intern/bpy_msgbus.c b/source/blender/python/intern/bpy_msgbus.c
index 630a0392dbd..db410fc10b1 100644
--- a/source/blender/python/intern/bpy_msgbus.c
+++ b/source/blender/python/intern/bpy_msgbus.c
@@ -307,7 +307,9 @@ static PyObject *bpy_msgbus_subscribe_rna(PyObject *UNUSED(self), PyObject *args
WM_msg_subscribe_rna_params(mbus, &msg_key_params, &msg_val_params, __func__);
- WM_msg_dump(mbus, __func__);
+ if (0) { /* For debugging. */
+ WM_msg_dump(mbus, __func__);
+ }
Py_RETURN_NONE;
}