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>2016-07-31 07:37:25 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-07-31 08:40:40 +0300
commit516f890b632a949f1fe544a8483745199bfbe9ad (patch)
treec09eb8b0c1a7f89632b70b25ee8a7632c25df30f /doc
parent0ec1be18160db011e3ca052d324a91a5de4c1e9d (diff)
Docs: simplify EXCLUDE_MODULES handling
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/sphinx_doc_gen.py20
1 files changed, 11 insertions, 9 deletions
diff --git a/doc/python_api/sphinx_doc_gen.py b/doc/python_api/sphinx_doc_gen.py
index cb4605e41c0..7e9868f3598 100644
--- a/doc/python_api/sphinx_doc_gen.py
+++ b/doc/python_api/sphinx_doc_gen.py
@@ -222,7 +222,7 @@ if not ARGS.partial:
FILTER_BPY_OPS = None
FILTER_BPY_TYPES = None
EXCLUDE_INFO_DOCS = False
- EXCLUDE_MODULES = ()
+ EXCLUDE_MODULES = []
else:
# can manually edit this too:
@@ -311,19 +311,21 @@ try:
__import__("aud")
except ImportError:
BPY_LOGGER.debug("Warning: Built without 'aud' module, docs incomplete...")
- EXCLUDE_MODULES = list(EXCLUDE_MODULES) + ["aud"]
+ EXCLUDE_MODULES.append("aud")
try:
__import__("freestyle")
except ImportError:
BPY_LOGGER.debug("Warning: Built without 'freestyle' module, docs incomplete...")
- EXCLUDE_MODULES = list(EXCLUDE_MODULES) + ["freestyle",
- "freestyle.chainingiterators",
- "freestyle.functions",
- "freestyle.predicates",
- "freestyle.shaders",
- "freestyle.types",
- "freestyle.utils"]
+ EXCLUDE_MODULES.extend([
+ "freestyle",
+ "freestyle.chainingiterators",
+ "freestyle.functions",
+ "freestyle.predicates",
+ "freestyle.shaders",
+ "freestyle.types",
+ "freestyle.utils",
+ ])
# Source files we use, and need to copy to the OUTPUT_DIR
# to have working out-of-source builds.