diff --git a/doc/python_api/sphinx_doc_gen.py b/doc/python_api/sphinx_doc_gen.py index 443ec514e1d..fe2279e9671 100644 --- a/doc/python_api/sphinx_doc_gen.py +++ b/doc/python_api/sphinx_doc_gen.py @@ -365,6 +365,7 @@ INFO_DOCS = ( "Tips and Tricks: Hints to help you while writing scripts for Blender"), ("info_gotcha.rst", "Gotcha's: some of the problems you may come up against when writing scripts"), + ("change_log.rst", "List of changes since last Blender release"), ) # only support for properties atm. @@ -1772,12 +1773,6 @@ def write_rst_contents(basepath): if "bmesh.ops" not in EXCLUDE_MODULES: execfile(os.path.join(SCRIPT_DIR, "rst_from_bmesh_opdefines.py")) - # rna generated change log - fw(title_string("API Info", "=", double=True)) - fw(".. toctree::\n") - fw(" :maxdepth: 1\n\n") - fw(" change_log.rst\n\n") - file.close()