diff options
| author | zhengsenyan <zhengsy_sean@126.com> | 2016-07-07 14:02:13 +0800 |
|---|---|---|
| committer | zhengsenyan <zhengsy_sean@126.com> | 2016-07-07 14:19:04 +0800 |
| commit | 1e895f3286cdb433a72a2195aa3adb40b6ec9a5c (patch) | |
| tree | bb4d9e6d499075d1b2b1f4f749b26926744bffce | |
| parent | 272d19340117927f6988c61113abc3dd995af76d (diff) | |
| download | python-openstackclient-1e895f3286cdb433a72a2195aa3adb40b6ec9a5c.tar.gz | |
fix one spelling mistake and two help messages
I checked all the 70 rst files in doc/source/command-objects and
found that:
-one spelling mistake as:rescure should be rescue(server.rst)
-two help messages:xpvnc should be xvpvnc(console-url.rst and
console.py)
Change-Id: I6f46c79983eaf5650bd3aa0ab448c19f5c6527a9
| -rw-r--r-- | doc/source/command-objects/console-url.rst | 2 | ||||
| -rw-r--r-- | doc/source/command-objects/server.rst | 2 | ||||
| -rw-r--r-- | openstackclient/compute/v2/console.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/command-objects/console-url.rst b/doc/source/command-objects/console-url.rst index 9cab8798..7993a7bf 100644 --- a/doc/source/command-objects/console-url.rst +++ b/doc/source/command-objects/console-url.rst @@ -24,7 +24,7 @@ Show server's remote console URL .. option:: --xvpvnc - Show xpvnc console URL + Show xvpvnc console URL .. option:: --spice diff --git a/doc/source/command-objects/server.rst b/doc/source/command-objects/server.rst index 49a54153..f099c271 100644 --- a/doc/source/command-objects/server.rst +++ b/doc/source/command-objects/server.rst @@ -543,7 +543,7 @@ server rescue Put server in rescue mode -.. program:: server rescure +.. program:: server rescue .. code:: bash os server rescue diff --git a/openstackclient/compute/v2/console.py b/openstackclient/compute/v2/console.py index 4179fa5c..74bed441 100644 --- a/openstackclient/compute/v2/console.py +++ b/openstackclient/compute/v2/console.py @@ -87,7 +87,7 @@ class ShowConsoleURL(command.ShowOne): dest='url_type', action='store_const', const='xvpvnc', - help=_("Show xpvnc console URL") + help=_("Show xvpvnc console URL") ) type_group.add_argument( '--spice', |
