diff options
author | Álvaro Mondéjar <mondejar1994@gmail.com> | 2020-05-09 14:44:39 +0200 |
---|---|---|
committer | Álvaro Mondéjar <mondejar1994@gmail.com> | 2020-05-09 14:44:39 +0200 |
commit | 62b44e6456183a26bfa8f3b38cf6716a2e5a674c (patch) | |
tree | f104491164a72971cb7241206ae7c88524490fcd /sphinx/cmd/quickstart.py | |
parent | ea81d56b30ec7841d3460686062810d1396a6a62 (diff) | |
download | sphinx-git-62b44e6456183a26bfa8f3b38cf6716a2e5a674c.tar.gz |
Fix double space inconsistences in code, CHANGES and translations.
Diffstat (limited to 'sphinx/cmd/quickstart.py')
-rw-r--r-- | sphinx/cmd/quickstart.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sphinx/cmd/quickstart.py b/sphinx/cmd/quickstart.py index 29d2e8187..0c9020bd5 100644 --- a/sphinx/cmd/quickstart.py +++ b/sphinx/cmd/quickstart.py @@ -275,7 +275,7 @@ def ask_user(d: Dict) -> None: print(__('Sphinx has the notion of a "version" and a "release" for the\n' 'software. Each version can have multiple releases. For example, for\n' 'Python the version is something like 2.5 or 3.0, while the release is\n' - 'something like 2.5.1 or 3.0a1. If you don\'t need this dual structure,\n' + 'something like 2.5.1 or 3.0a1. If you don\'t need this dual structure,\n' 'just set both to the same value.')) d['version'] = do_prompt(__('Project version'), '', allow_empty) if 'release' not in d: @@ -296,7 +296,7 @@ def ask_user(d: Dict) -> None: if 'suffix' not in d: print() print(__('The file name suffix for source files. Commonly, this is either ".txt"\n' - 'or ".rst". Only files with this suffix are considered documents.')) + 'or ".rst". Only files with this suffix are considered documents.')) d['suffix'] = do_prompt(__('Source file suffix'), '.rst', suffix) if 'master' not in d: |