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
path: root/source
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@blender.org>2022-04-07 13:51:48 +0300
committerFabian Schempp <fabianschempp@googlemail.com>2022-04-11 01:31:59 +0300
commit9c702423cf9fc34bfdc8cca3b7db055f1284f631 (patch)
treef319aef2ba8d04f291e228b82b593ceb08d90b80 /source
parent288daa14688bc072d61d495b031c72c4a6621e74 (diff)
Cleanup: add clarifying comment to `bpy_app_getsets`
No functional changes.
Diffstat (limited to 'source')
-rw-r--r--source/blender/python/intern/bpy_app.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/python/intern/bpy_app.c b/source/blender/python/intern/bpy_app.c
index 84fe27197f9..621cc79a8db 100644
--- a/source/blender/python/intern/bpy_app.c
+++ b/source/blender/python/intern/bpy_app.c
@@ -445,6 +445,8 @@ static PyGetSetDef bpy_app_getsets[] = {
NULL,
(void *)G_FLAG_SCRIPT_AUTOEXEC_FAIL_QUIET},
{"autoexec_fail_message", bpy_app_autoexec_fail_message_get, NULL, NULL, NULL},
+
+ /* End-of-list marker. */
{NULL, NULL, NULL, NULL, NULL},
};