summaryrefslogtreecommitdiff
path: root/openstackclient/compute
diff options
context:
space:
mode:
authorSteve Martinelli <stevemar@ca.ibm.com>2015-01-09 19:13:03 -0500
committerSteve Martinelli <stevemar@ca.ibm.com>2015-01-13 00:58:57 -0500
commit019c155e9b308dab002f23064b969452bc3d7a89 (patch)
treede747d74a7bdaecdbd1ae0490ba5b1e9dd43b068 /openstackclient/compute
parent3b99c178949bc0864f927ac610a12fc666537162 (diff)
downloadpython-openstackclient-019c155e9b308dab002f23064b969452bc3d7a89.tar.gz
Fine tune some of the helps commands
try and add some consistency with the show and delete commands. replace 'show x' with 'display x' change 'delete a y' with just 'delete y' Change-Id: I47dfa8ee23ac5c41b355796415eb515155832f65
Diffstat (limited to 'openstackclient/compute')
-rw-r--r--openstackclient/compute/v2/aggregate.py4
-rw-r--r--openstackclient/compute/v2/flavor.py2
-rw-r--r--openstackclient/compute/v2/keypair.py6
3 files changed, 6 insertions, 6 deletions
diff --git a/openstackclient/compute/v2/aggregate.py b/openstackclient/compute/v2/aggregate.py
index bfc2b115..84ed5c7d 100644
--- a/openstackclient/compute/v2/aggregate.py
+++ b/openstackclient/compute/v2/aggregate.py
@@ -290,7 +290,7 @@ class SetAggregate(show.ShowOne):
class ShowAggregate(show.ShowOne):
- """Show a specific aggregate"""
+ """Display aggregate details"""
log = logging.getLogger(__name__ + '.ShowAggregate')
@@ -299,7 +299,7 @@ class ShowAggregate(show.ShowOne):
parser.add_argument(
'aggregate',
metavar='<aggregate>',
- help='Aggregate to show (name or ID)',
+ help='Aggregate to display (name or ID)',
)
return parser
diff --git a/openstackclient/compute/v2/flavor.py b/openstackclient/compute/v2/flavor.py
index 6f3788a0..bb89a85b 100644
--- a/openstackclient/compute/v2/flavor.py
+++ b/openstackclient/compute/v2/flavor.py
@@ -125,7 +125,7 @@ class CreateFlavor(show.ShowOne):
class DeleteFlavor(command.Command):
- """Delete a flavor"""
+ """Delete flavor"""
log = logging.getLogger(__name__ + ".DeleteFlavor")
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',