diff options
author | jfbu <jfbu@free.fr> | 2019-04-14 18:54:39 +0200 |
---|---|---|
committer | jfbu <jfbu@free.fr> | 2019-04-14 18:54:39 +0200 |
commit | f1a8819c08902ecf09038c3fc8bc3a4d649ab128 (patch) | |
tree | 9b24105544d4ff0ddb64e22dcc77599a9485d869 /sphinx/cmd/quickstart.py | |
parent | b6a24df5f56e95f56e40e80beea96e78d89397a8 (diff) | |
download | sphinx-git-f1a8819c08902ecf09038c3fc8bc3a4d649ab128.tar.gz |
Fix the string in quickstart for 'path' argument of parser
Diffstat (limited to 'sphinx/cmd/quickstart.py')
-rw-r--r-- | sphinx/cmd/quickstart.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/cmd/quickstart.py b/sphinx/cmd/quickstart.py index dfc096de5..49abc2fa1 100644 --- a/sphinx/cmd/quickstart.py +++ b/sphinx/cmd/quickstart.py @@ -510,7 +510,7 @@ Makefile to be used with sphinx-build. version='%%(prog)s %s' % __display_version__) parser.add_argument('path', metavar='PROJECT_DIR', default='.', nargs='?', - help=__('output path')) + help=__('project root')) group = parser.add_argument_group(__('Structure options')) group.add_argument('--sep', action='store_true', default=None, |