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:
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/rst/include__bmesh.rst1
-rw-r--r--doc/python_api/sphinx_doc_gen.py5
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/python_api/rst/include__bmesh.rst b/doc/python_api/rst/include__bmesh.rst
index 1c702275f62..2481c4a739c 100644
--- a/doc/python_api/rst/include__bmesh.rst
+++ b/doc/python_api/rst/include__bmesh.rst
@@ -33,7 +33,6 @@ For an overview of BMesh data types and how they reference each other see:
.. todo::
* add access to BMesh **walkers**
- * add access selection history (readonly access done)
* add a way to re-tessellate an editmode bmesh.
diff --git a/doc/python_api/sphinx_doc_gen.py b/doc/python_api/sphinx_doc_gen.py
index 49193ad8f22..b15fcd9303b 100644
--- a/doc/python_api/sphinx_doc_gen.py
+++ b/doc/python_api/sphinx_doc_gen.py
@@ -94,12 +94,13 @@ def handle_args():
usage=SCRIPT_HELP_MSG
)
- # optional arguments
+ # optional arguments
parser.add_argument("-o", "--output",
dest="output_dir",
type=str,
default=SCRIPT_DIR,
- help="Path of the API docs (default=<script dir>)",
+ # XXX, THIS ISNT WORKING, EXAMPLE SCRIPTS WILL NOT BE FOUND
+ help="Path of the API docs (default=<script dir>).",
required=False)
parser.add_argument("-B", "--sphinx-build",