summaryrefslogtreecommitdiff
path: root/openstackclient/compute/v2/keypair.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2015-01-13 07:41:47 +0000
committerGerrit Code Review <review@openstack.org>2015-01-13 07:41:47 +0000
commit2525ec4e52cf12f7d8426f01cc5491ea3c5ee162 (patch)
treefff00b3ca0df48a3bc0542087b712c05fcde3604 /openstackclient/compute/v2/keypair.py
parentb36e90053bb3b92be5ea65d34cee6769cf61900f (diff)
parent019c155e9b308dab002f23064b969452bc3d7a89 (diff)
downloadpython-openstackclient-2525ec4e52cf12f7d8426f01cc5491ea3c5ee162.tar.gz
Merge "Fine tune some of the helps commands"
Diffstat (limited to 'openstackclient/compute/v2/keypair.py')
-rw-r--r--openstackclient/compute/v2/keypair.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/openstackclient/compute/v2/keypair.py b/openstackclient/compute/v2/keypair.py
index 6a158d86..edf25f83 100644
--- a/openstackclient/compute/v2/keypair.py
+++ b/openstackclient/compute/v2/keypair.py
@@ -80,7 +80,7 @@ class CreateKeypair(show.ShowOne):
class DeleteKeypair(command.Command):
- """Delete a public key"""
+ """Delete public key"""
log = logging.getLogger(__name__ + '.DeleteKeypair')
@@ -121,7 +121,7 @@ class ListKeypair(lister.Lister):
class ShowKeypair(show.ShowOne):
- """Show public key details"""
+ """Display public key details"""
log = logging.getLogger(__name__ + '.ShowKeypair')
@@ -130,7 +130,7 @@ class ShowKeypair(show.ShowOne):
parser.add_argument(
'name',
metavar='<key>',
- help='Public key to show',
+ help='Public key to display',
)
parser.add_argument(
'--public-key',