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:
authorJosh Mitchell <yoshanuikabundi@gmail.com>2021-11-10 06:24:47 +0300
committerJosh Mitchell <yoshanuikabundi@gmail.com>2021-11-15 05:18:47 +0300
commit79089b5fa43e1bc3156cf4cc11b06e956bb9fa07 (patch)
tree7cdeb36dc81f8703a657ce163342ad1c02a855f4 /sphinx/ext/autosummary/generate.py
parentf3d09559dd6a12610f50a0d6f9b1d103f810598c (diff)
Corrections from review by tk0miya
Diffstat (limited to 'sphinx/ext/autosummary/generate.py')
-rw-r--r--sphinx/ext/autosummary/generate.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/ext/autosummary/generate.py b/sphinx/ext/autosummary/generate.py
index 6bca102e9..05363f3c7 100644
--- a/sphinx/ext/autosummary/generate.py
+++ b/sphinx/ext/autosummary/generate.py
@@ -645,7 +645,7 @@ The format of the autosummary directive is documented in the
dest='imported_members', default=False,
help=__('document imported members (default: '
'%(default)s)'))
- parser.add_argument('-a', '--respect-__all__', action='store_false',
+ parser.add_argument('-a', '--respect-module-all', action='store_false',
dest='ignore___all__', default=True,
help=__('document exactly the members in module __all__ attribute. '
'(default: %(default)s)'))