diff options
author | Adam Turner <9087854+aa-turner@users.noreply.github.com> | 2023-02-18 01:19:49 +0000 |
---|---|---|
committer | Adam Turner <9087854+aa-turner@users.noreply.github.com> | 2023-02-18 02:16:50 +0000 |
commit | 6c569889791c1abae6202a9c10ee4c5c8a6745ea (patch) | |
tree | 27455d0cf47ab1dbc735e610a1e85444633bfa11 /sphinx/cmd/quickstart.py | |
parent | 13442f690183cc2fb724c51af2321164b5ba749d (diff) | |
download | sphinx-git-6c569889791c1abae6202a9c10ee4c5c8a6745ea.tar.gz |
Unescape quotation marks where possible
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 626eb0b78..cda8181cc 100644 --- a/sphinx/cmd/quickstart.py +++ b/sphinx/cmd/quickstart.py @@ -255,7 +255,7 @@ def ask_user(d: dict[str, Any]) -> 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: @@ -315,7 +315,7 @@ def ask_user(d: dict[str, Any]) -> None: if 'makefile' not in d: print() print(__('A Makefile and a Windows command file can be generated for you so that you\n' - 'only have to run e.g. `make html\' instead of invoking sphinx-build\n' + "only have to run e.g. `make html' instead of invoking sphinx-build\n" 'directly.')) d['makefile'] = do_prompt(__('Create Makefile? (y/n)'), 'y', boolean) |