diff options
| author | Dean Troyer <dtroyer@gmail.com> | 2016-03-28 14:30:07 -0500 |
|---|---|---|
| committer | Dean Troyer <dtroyer@gmail.com> | 2016-03-28 14:33:24 -0500 |
| commit | b4402a0468ac1362f0928b37d5c7da54313c7668 (patch) | |
| tree | 65f4c2ceaf20b0cca4da4a94161eae3c42d2d17b /openstackclient/volume/v2 | |
| parent | 5f55e99d464b2ca0a9f1cf879164b2cc2bb23fc5 (diff) | |
| download | python-openstackclient-b4402a0468ac1362f0928b37d5c7da54313c7668.tar.gz | |
Docs cleanup: volume type
Clean up volume type command help, add volume type show to doc, sort
command classes in v1/volume_type.py.
Change-Id: I1f8e5c047d9c08f5704fc23cfb694f23d32e3caf
Diffstat (limited to 'openstackclient/volume/v2')
| -rw-r--r-- | openstackclient/volume/v2/volume_type.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/openstackclient/volume/v2/volume_type.py b/openstackclient/volume/v2/volume_type.py index d2b3ed6a..5509ac52 100644 --- a/openstackclient/volume/v2/volume_type.py +++ b/openstackclient/volume/v2/volume_type.py @@ -29,12 +29,12 @@ class CreateVolumeType(command.ShowOne): parser.add_argument( "name", metavar="<name>", - help="New volume type name" + help="Volume type name", ) parser.add_argument( "--description", metavar="<description>", - help="New volume type description", + help="Volume type description", ) public_group = parser.add_mutually_exclusive_group() public_group.add_argument( @@ -55,7 +55,7 @@ class CreateVolumeType(command.ShowOne): '--property', metavar='<key=value>', action=parseractions.KeyValueAction, - help='Property to add for this volume type' + help='Set a property on this volume type' '(repeat option to set multiple properties)', ) return parser @@ -153,7 +153,7 @@ class SetVolumeType(command.Command): '--property', metavar='<key=value>', action=parseractions.KeyValueAction, - help='Property to add or modify for this volume type ' + help='Set a property on this volume type ' '(repeat option to set multiple properties)', ) return parser @@ -221,7 +221,7 @@ class UnsetVolumeType(command.Command): metavar='<key>', default=[], required=True, - help='Property to remove from volume type ' + help='Remove a property from this volume type ' '(repeat option to remove multiple properties)', ) return parser |
