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
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2017-02-24 00:08:01 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2017-02-24 00:08:01 +0300
commitc067f1d0d470ada577f2b722b543d814448ce550 (patch)
treedb554bd5c9b2ef2b3135d3ee33415d89cd31d60a
parentc7ad27fc07d9aa7ff998c730af184c569995f61a (diff)
Fix stupid mistake in previous commit for release builds of API doc.
-rwxr-xr-xdoc/python_api/sphinx_doc_update.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/python_api/sphinx_doc_update.py b/doc/python_api/sphinx_doc_update.py
index c7717c4a809..884ddeecffb 100755
--- a/doc/python_api/sphinx_doc_update.py
+++ b/doc/python_api/sphinx_doc_update.py
@@ -121,7 +121,7 @@ def main():
" f.write('%d\\n' % is_release)\n"
" f.write('%d.%d%s\\n' % (bpy.app.version[0], bpy.app.version[1], bpy.app.version_char)\n"
" if is_release else '%s\\n' % branch)\n"
- " f.write('%d_%d%s_release\\n' % (bpy.app.version[0], bpy.app.version[1], bpy.app.version_char)\n"
+ " f.write('%d_%d%s_release' % (bpy.app.version[0], bpy.app.version[1], bpy.app.version_char)\n"
" if is_release else '%d_%d_%d' % bpy.app.version)\n")
get_ver_cmd = (args.blender, "--background", "-noaudio", "--factory-startup", "--python-exit-code", "1",
"--python-expr", getver_script, "--", getver_file)