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:
authorSybren A. Stüvel <sybren@blender.org>2022-04-07 13:51:48 +0300
committerSybren A. Stüvel <sybren@blender.org>2022-04-07 14:20:32 +0300
commit8306f89c37164036c34f037f568539773e79eecc (patch)
tree6ba0935b1984106c53b5d15b54c4772864c87988
parent434521a9e2cc417e932115a3bc40c42b9b77cd92 (diff)
Cleanup: add clarifying comment to `bpy_app_getsets`
No functional changes.
-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},
};