summaryrefslogtreecommitdiff
path: root/openstackclient/compute/v2/keypair.py
diff options
context:
space:
mode:
authorDean Troyer <dtroyer@gmail.com>2014-06-20 10:06:05 -0500
committerDean Troyer <dtroyer@gmail.com>2014-07-24 11:22:29 -0500
commit5bb6c72ef72b2d83f5ddeaf4b3c09a89b76ba0a1 (patch)
treecfe627e999ec7c24b053cb55896b0d47988a0a6d /openstackclient/compute/v2/keypair.py
parentea938e8ddfa0f5f8832e09d61537f1e81e3121e9 (diff)
downloadpython-openstackclient-5bb6c72ef72b2d83f5ddeaf4b3c09a89b76ba0a1.tar.gz
Normalize more help strings
Change-Id: I2b21bc904e35c1cc50da369d148e607fe3e8cf90
Diffstat (limited to 'openstackclient/compute/v2/keypair.py')
-rw-r--r--openstackclient/compute/v2/keypair.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/openstackclient/compute/v2/keypair.py b/openstackclient/compute/v2/keypair.py
index 972443a4..74cf4372 100644
--- a/openstackclient/compute/v2/keypair.py
+++ b/openstackclient/compute/v2/keypair.py
@@ -29,7 +29,7 @@ from openstackclient.common import utils
class CreateKeypair(show.ShowOne):
- """Create keypair command"""
+ """Create new keypair"""
log = logging.getLogger(__name__ + '.CreateKeypair')
@@ -79,7 +79,7 @@ class CreateKeypair(show.ShowOne):
class DeleteKeypair(command.Command):
- """Delete keypair command"""
+ """Delete a keypair"""
log = logging.getLogger(__name__ + '.DeleteKeypair')
@@ -100,7 +100,7 @@ class DeleteKeypair(command.Command):
class ListKeypair(lister.Lister):
- """List keypair command"""
+ """List keypairs"""
log = logging.getLogger(__name__ + ".ListKeypair")
@@ -120,7 +120,7 @@ class ListKeypair(lister.Lister):
class ShowKeypair(show.ShowOne):
- """Show keypair command"""
+ """Show keypair details"""
log = logging.getLogger(__name__ + '.ShowKeypair')