From e3be5aacf8db45689ff03a9a1cf1b4e9f3e05fea Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 11 Oct 2011 23:27:01 +0000 Subject: [PATCH] fix [#28873] Blenders Python API Sphinx Build Script give exceptions --- doc/python_api/sphinx_doc_gen.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/python_api/sphinx_doc_gen.py b/doc/python_api/sphinx_doc_gen.py index c1bed089b5a..8743a89057e 100644 --- a/doc/python_api/sphinx_doc_gen.py +++ b/doc/python_api/sphinx_doc_gen.py @@ -1042,7 +1042,9 @@ def rna2sphinx(BASEPATH): fw("html_theme = 'blender-org'\n") fw("html_theme_path = ['../']\n") - fw("html_favicon = 'favicon.ico'\n") + # copied with the theme, exclude else we get an error [#28873] + fw("html_favicon = 'favicon.ico'\n") + # not helpful since the source us generated, adds to upload size. fw("html_copy_source = False\n") fw("\n")