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>2018-07-05 08:53:21 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-07-05 08:53:21 +0300
commitcd17b3258327522b8c6f56a3ee7239a91f2be149 (patch)
tree23a62b31efa05abaaa412f6a84919b9bdb3da169 /doc
parentc9608047472ae2b08d2d4b188fca5211a6c0b925 (diff)
Cleanup: pep8
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/python_api/sphinx_doc_update.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/doc/python_api/sphinx_doc_update.py b/doc/python_api/sphinx_doc_update.py
index d43806d128a..af44137aca4 100755
--- a/doc/python_api/sphinx_doc_update.py
+++ b/doc/python_api/sphinx_doc_update.py
@@ -107,9 +107,11 @@ def main():
with tempfile.TemporaryDirectory() as tmp_dir:
# II) Generate doc source in temp dir.
- doc_gen_cmd = (args.blender, "--background", "-noaudio", "--factory-startup", "--python-exit-code", "1",
- "--python", "%s/doc/python_api/sphinx_doc_gen.py" % args.source_dir, "--",
- "--output", tmp_dir)
+ doc_gen_cmd = (
+ args.blender, "--background", "-noaudio", "--factory-startup", "--python-exit-code", "1",
+ "--python", "%s/doc/python_api/sphinx_doc_gen.py" % args.source_dir, "--",
+ "--output", tmp_dir
+ )
subprocess.run(doc_gen_cmd)
# III) Get Blender version info.