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:
authorAaron Carlisle <carlisle.b3d@gmail.com>2018-08-14 03:53:45 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2018-08-14 03:53:45 +0300
commite040cfe15aff695246efcb4bbb0ea6fa4992fd19 (patch)
tree680db764374040229c16214b60be55a44b3cd007 /doc
parent44871e0e0f822fec5c8272fffe2f56ab24291c48 (diff)
PyDoc: Remove "API" from version
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/sphinx_doc_gen.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/python_api/sphinx_doc_gen.py b/doc/python_api/sphinx_doc_gen.py
index 6943a191f5d..cde11268a9b 100644
--- a/doc/python_api/sphinx_doc_gen.py
+++ b/doc/python_api/sphinx_doc_gen.py
@@ -1625,8 +1625,8 @@ def write_sphinx_conf_py(basepath):
fw("project = 'Blender'\n")
fw("master_doc = 'index'\n")
fw("copyright = u'Blender Foundation'\n")
- fw("version = '%s - API'\n" % BLENDER_VERSION_DOTS)
- fw("release = '%s - API'\n" % BLENDER_VERSION_DOTS)
+ fw("version = '%s'\n" % BLENDER_VERSION_DOTS)
+ fw("release = '%s'\n" % BLENDER_VERSION_DOTS)
# Quiet file not in table-of-contents warnings.
fw("exclude_patterns = [\n")