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:
authorCampbell Barton <ideasman42@gmail.com>2020-05-11 09:41:06 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-05-11 09:41:06 +0300
commit63849aac957fe82caeb6578a6a82bcd4f749247f (patch)
tree8ca1d15b9bca612cc9f384aa2ee92cccfad6560e /doc/python_api/sphinx_doc_gen.py
parente3673fd8696228237d23765c8256058b3b046be3 (diff)
Fix duplicate property references in generated API docs
Diffstat (limited to 'doc/python_api/sphinx_doc_gen.py')
-rw-r--r--doc/python_api/sphinx_doc_gen.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/doc/python_api/sphinx_doc_gen.py b/doc/python_api/sphinx_doc_gen.py
index 36ec0174d80..15108fe2aa2 100644
--- a/doc/python_api/sphinx_doc_gen.py
+++ b/doc/python_api/sphinx_doc_gen.py
@@ -1459,9 +1459,6 @@ def pyrna2sphinx(basepath):
for identifier, py_prop in base.get_py_properties():
lines.append(" * :class:`%s.%s`\n" % (base.identifier, identifier))
- for identifier, py_prop in base.get_py_properties():
- lines.append(" * :class:`%s.%s`\n" % (base.identifier, identifier))
-
if lines:
fw(".. rubric:: Inherited Properties\n\n")