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:
authorAaron Carlisle <carlisle.b3d@gmail.com>2021-07-23 23:50:10 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2021-07-23 23:50:10 +0300
commit5e3d0840a39248244f4619e01736ada04376acae (patch)
tree91ae994279a1cdf3c554e6bc817dd995020041ba /source/blender/python
parentc41b93bda5328ce13faf7048dfd38708e6486b6a (diff)
PyDocs: Fix syntax errors resulting in warnings
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/intern/bpy_rna.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/python/intern/bpy_rna.c b/source/blender/python/intern/bpy_rna.c
index 5b1a8f06c60..7ecdbe4b4d9 100644
--- a/source/blender/python/intern/bpy_rna.c
+++ b/source/blender/python/intern/bpy_rna.c
@@ -4254,7 +4254,7 @@ static PyObject *pyrna_struct_dir(BPy_StructRNA *self)
}
PyDoc_STRVAR(pyrna_struct_id_properties_ensure_doc,
- ".. method:: id_properties_ensure()\n"
+ ".. method:: id_properties_ensure()\n\n"
" :return: the parent group for an RNA struct's custom IDProperties.\n"
" :rtype: :class:`bpy.types.IDPropertyGroup`\n");
static PyObject *pyrna_struct_id_properties_ensure(BPy_StructRNA *self)
@@ -4282,7 +4282,7 @@ static PyObject *pyrna_struct_id_properties_ensure(BPy_StructRNA *self)
}
PyDoc_STRVAR(pyrna_struct_id_properties_clear_doc,
- ".. method:: id_properties_clear()\n"
+ ".. method:: id_properties_clear()\n\n"
" :return: Remove the parent group for an RNA struct's custom IDProperties.\n");
static PyObject *pyrna_struct_id_properties_clear(BPy_StructRNA *self)
{