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/setup_command.py | |
parent | 13442f690183cc2fb724c51af2321164b5ba749d (diff) | |
download | sphinx-git-6c569889791c1abae6202a9c10ee4c5c8a6745ea.tar.gz |
Unescape quotation marks where possible
Diffstat (limited to 'sphinx/setup_command.py')
-rw-r--r-- | sphinx/setup_command.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/setup_command.py b/sphinx/setup_command.py index 35371a7d2..cbcdb2ff2 100644 --- a/sphinx/setup_command.py +++ b/sphinx/setup_command.py @@ -74,7 +74,7 @@ class BuildDoc(Command): ('builder=', 'b', 'The builder (or builders) to use. Can be a comma- ' 'or space-separated list. Defaults to "html"'), ('warning-is-error', 'W', 'Turn warning into errors'), - ('project=', None, 'The documented project\'s name'), + ('project=', None, "The documented project's name"), ('version=', None, 'The short X.Y version'), ('release=', None, 'The full version, including alpha/beta/rc tags'), ('today=', None, 'How to format the current date, used as the ' |