diff options
| author | Andreas Jaeger <aj@suse.de> | 2014-02-21 19:22:32 +0100 |
|---|---|---|
| committer | Andreas Jaeger <aj@suse.de> | 2014-02-21 19:40:41 +0100 |
| commit | 50432931562ca697a2b88db2bb2f0b1da91fb28a (patch) | |
| tree | 57b3429d3d539c05d5b9bbaeef21ef359d9898c8 /openstackclient/identity | |
| parent | 2cae50c442337826216d68832a1cb387f3cc1341 (diff) | |
| download | python-openstackclient-50432931562ca697a2b88db2bb2f0b1da91fb28a.tar.gz | |
Fix some help strings
This fixes some errors and inconsistencies I found reviewing the
help strings:
* Capitalize help strings
* Add missing space between words (in multi-line strings)
* Improve wording
Change-Id: I2fb31ab4191c330146e31c1a9651115a6657769a
Diffstat (limited to 'openstackclient/identity')
| -rw-r--r-- | openstackclient/identity/v2_0/endpoint.py | 2 | ||||
| -rw-r--r-- | openstackclient/identity/v2_0/service.py | 2 | ||||
| -rw-r--r-- | openstackclient/identity/v2_0/user.py | 2 | ||||
| -rw-r--r-- | openstackclient/identity/v3/endpoint.py | 2 | ||||
| -rw-r--r-- | openstackclient/identity/v3/group.py | 2 | ||||
| -rw-r--r-- | openstackclient/identity/v3/policy.py | 2 | ||||
| -rw-r--r-- | openstackclient/identity/v3/token.py | 6 | ||||
| -rw-r--r-- | openstackclient/identity/v3/user.py | 2 |
8 files changed, 10 insertions, 10 deletions
diff --git a/openstackclient/identity/v2_0/endpoint.py b/openstackclient/identity/v2_0/endpoint.py index 5a050fa1..0319c268 100644 --- a/openstackclient/identity/v2_0/endpoint.py +++ b/openstackclient/identity/v2_0/endpoint.py @@ -106,7 +106,7 @@ class ListEndpoint(lister.Lister): '--long', action='store_true', default=False, - help='Additional fields are listed in output') + help='List additional fields in output') return parser def take_action(self, parsed_args): diff --git a/openstackclient/identity/v2_0/service.py b/openstackclient/identity/v2_0/service.py index 92d1e099..ea45f634 100644 --- a/openstackclient/identity/v2_0/service.py +++ b/openstackclient/identity/v2_0/service.py @@ -104,7 +104,7 @@ class ListService(lister.Lister): '--long', action='store_true', default=False, - help='Additional fields are listed in output') + help='List additional fields in output') return parser def take_action(self, parsed_args): diff --git a/openstackclient/identity/v2_0/user.py b/openstackclient/identity/v2_0/user.py index 371c45a9..55ba5ab6 100644 --- a/openstackclient/identity/v2_0/user.py +++ b/openstackclient/identity/v2_0/user.py @@ -143,7 +143,7 @@ class ListUser(lister.Lister): '--long', action='store_true', default=False, - help='Additional fields are listed in output') + help='List additional fields in output') return parser def take_action(self, parsed_args): diff --git a/openstackclient/identity/v3/endpoint.py b/openstackclient/identity/v3/endpoint.py index 43da07aa..e0b1f1a3 100644 --- a/openstackclient/identity/v3/endpoint.py +++ b/openstackclient/identity/v3/endpoint.py @@ -120,7 +120,7 @@ class ListEndpoint(lister.Lister): '--long', action='store_true', default=False, - help='Additional fields are listed in output') + help='List additional fields in output') return parser def take_action(self, parsed_args): diff --git a/openstackclient/identity/v3/group.py b/openstackclient/identity/v3/group.py index b5d24ef5..6c059b5d 100644 --- a/openstackclient/identity/v3/group.py +++ b/openstackclient/identity/v3/group.py @@ -197,7 +197,7 @@ class ListGroup(lister.Lister): '--long', action='store_true', default=False, - help='Additional fields are listed in output', + help='List additional fields in output', ) return parser diff --git a/openstackclient/identity/v3/policy.py b/openstackclient/identity/v3/policy.py index cdbb1cf2..a760d8cd 100644 --- a/openstackclient/identity/v3/policy.py +++ b/openstackclient/identity/v3/policy.py @@ -37,7 +37,7 @@ class CreatePolicy(show.ShowOne): '--type', metavar='<policy-type>', default="application/json", - help='New MIME Type of the policy blob - i.e.: application/json', + help='New MIME type of the policy blob - i.e.: application/json', ) parser.add_argument( 'blob_file', diff --git a/openstackclient/identity/v3/token.py b/openstackclient/identity/v3/token.py index 68f9ffef..3cc78cd7 100644 --- a/openstackclient/identity/v3/token.py +++ b/openstackclient/identity/v3/token.py @@ -213,12 +213,12 @@ class DeleteAccessToken(command.Command): parser.add_argument( 'user', metavar='<user>', - help='Name or Id of user', + help='Name or ID of user', ) parser.add_argument( 'access_key', metavar='<access-key>', - help='Access Token to be deleted', + help='Access token to be deleted', ) return parser @@ -243,7 +243,7 @@ class ListAccessToken(lister.Lister): parser.add_argument( 'user', metavar='<user>', - help='Name or Id of user', + help='Name or ID of user', ) return parser diff --git a/openstackclient/identity/v3/user.py b/openstackclient/identity/v3/user.py index 54ffe561..2cb1b4d2 100644 --- a/openstackclient/identity/v3/user.py +++ b/openstackclient/identity/v3/user.py @@ -174,7 +174,7 @@ class ListUser(lister.Lister): '--long', action='store_true', default=False, - help='Additional fields are listed in output', + help='List additional fields in output', ) return parser |
