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
path: root/doc
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-10-12 03:27:01 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-10-12 03:27:01 +0400
commite3be5aacf8db45689ff03a9a1cf1b4e9f3e05fea (patch)
treecede72d000bd582e97142fe7c2ba9c47ed556b55 /doc
parent4750f24663cc4077861de80a38dcd21af781f30d (diff)
fix [#28873] Blenders Python API Sphinx Build Script give exceptions
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/sphinx_doc_gen.py4
1 files changed, 3 insertions, 1 deletions
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")