Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Hahler <github@thequod.de>2019-03-17 09:09:19 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2019-03-17 09:09:19 +0300
commit925bc187eacbc0fbdd2c56f360a040a23cb13145 (patch)
tree8decddeeb8300d6f54b2c305ce7efd8cc9c27f21 /sphinx/cmd
parentfdcb8b1f8963078cee83e81550ee3879510cc1fd (diff)
Support --keep-going with BuildDoc setup command (#6180)
* Support --keep-going with BuildDoc setup command This allows for `tox -e docs -- -n -W --keep-going`.
Diffstat (limited to 'sphinx/cmd')
-rw-r--r--sphinx/cmd/build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/cmd/build.py b/sphinx/cmd/build.py
index 6fd954296..e19500901 100644
--- a/sphinx/cmd/build.py
+++ b/sphinx/cmd/build.py
@@ -186,7 +186,7 @@ files can be built by specifying individual filenames.
group.add_argument('-W', action='store_true', dest='warningiserror',
help=__('turn warnings into errors'))
group.add_argument('--keep-going', action='store_true', dest='keep_going',
- help=__("With -W, Keep going when getting warnings"))
+ help=__("With -W, keep going when getting warnings"))
group.add_argument('-T', action='store_true', dest='traceback',
help=__('show full traceback on exception'))
group.add_argument('-P', action='store_true', dest='pdb',