Skip to content

Commit 8fe50fc

Browse files
Jenkinsopenstack-gerrit
authored andcommitted
Merge "Fix some help strings"
2 parents 034a9d1 + 5043293 commit 8fe50fc

15 files changed

Lines changed: 32 additions & 32 deletions

File tree

openstackclient/compute/v2/agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def get_parser(self, prog_name):
136136
parser.add_argument(
137137
"id",
138138
metavar="<id>",
139-
help="ID of the agent build")
139+
help="ID of the agent")
140140
parser.add_argument(
141141
"version",
142142
metavar="<version>",

openstackclient/compute/v2/server.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -483,40 +483,40 @@ def get_parser(self, prog_name):
483483
parser.add_argument(
484484
'--reservation-id',
485485
metavar='<reservation-id>',
486-
help='only return instances that match the reservation')
486+
help='Only return instances that match the reservation')
487487
parser.add_argument(
488488
'--ip',
489489
metavar='<ip-address-regex>',
490-
help='regular expression to match IP address')
490+
help='Regular expression to match IP addresses')
491491
parser.add_argument(
492492
'--ip6',
493493
metavar='<ip-address-regex>',
494-
help='regular expression to match IPv6 address')
494+
help='Regular expression to match IPv6 addresses')
495495
parser.add_argument(
496496
'--name',
497497
metavar='<name>',
498-
help='regular expression to match name')
498+
help='Regular expression to match names')
499499
parser.add_argument(
500500
'--status',
501501
metavar='<status>',
502502
# FIXME(dhellmann): Add choices?
503-
help='search by server status')
503+
help='Search by server status')
504504
parser.add_argument(
505505
'--flavor',
506506
metavar='<flavor>',
507-
help='search by flavor ID')
507+
help='Search by flavor ID')
508508
parser.add_argument(
509509
'--image',
510510
metavar='<image>',
511-
help='search by image ID')
511+
help='Search by image ID')
512512
parser.add_argument(
513513
'--host',
514514
metavar='<hostname>',
515-
help='search by hostname')
515+
help='Search by hostname')
516516
parser.add_argument(
517517
'--instance-name',
518518
metavar='<server-name>',
519-
help='regular expression to match instance name (admin only)')
519+
help='Regular expression to match instance name (admin only)')
520520
parser.add_argument(
521521
'--all-projects',
522522
action='store_true',
@@ -526,7 +526,7 @@ def get_parser(self, prog_name):
526526
'--long',
527527
action='store_true',
528528
default=False,
529-
help='Additional fields are listed in output')
529+
help='List additional fields in output')
530530
return parser
531531

532532
def take_action(self, parsed_args):
@@ -1181,14 +1181,14 @@ def get_parser(self, prog_name):
11811181
dest='ipv4',
11821182
action='store_true',
11831183
default=False,
1184-
help='Use only IPv4 addresses only',
1184+
help='Use only IPv4 addresses',
11851185
)
11861186
ip_group.add_argument(
11871187
'-6',
11881188
dest='ipv6',
11891189
action='store_true',
11901190
default=False,
1191-
help='Use only IPv6 addresses only',
1191+
help='Use only IPv6 addresses',
11921192
)
11931193
type_group = parser.add_mutually_exclusive_group()
11941194
type_group.add_argument(

openstackclient/compute/v2/usage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def get_parser(self, prog_name):
3535
"--start",
3636
metavar="<start>",
3737
default=None,
38-
help="Usage range start date ex 2012-01-20"
38+
help="Usage range start date, ex 2012-01-20"
3939
" (default: 4 weeks ago)."
4040
)
4141
parser.add_argument(

openstackclient/identity/v2_0/endpoint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def get_parser(self, prog_name):
106106
'--long',
107107
action='store_true',
108108
default=False,
109-
help='Additional fields are listed in output')
109+
help='List additional fields in output')
110110
return parser
111111

112112
def take_action(self, parsed_args):

openstackclient/identity/v2_0/service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def get_parser(self, prog_name):
104104
'--long',
105105
action='store_true',
106106
default=False,
107-
help='Additional fields are listed in output')
107+
help='List additional fields in output')
108108
return parser
109109

110110
def take_action(self, parsed_args):

openstackclient/identity/v2_0/user.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def get_parser(self, prog_name):
151151
'--long',
152152
action='store_true',
153153
default=False,
154-
help='Additional fields are listed in output')
154+
help='List additional fields in output')
155155
return parser
156156

157157
def take_action(self, parsed_args):

openstackclient/identity/v3/endpoint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def get_parser(self, prog_name):
120120
'--long',
121121
action='store_true',
122122
default=False,
123-
help='Additional fields are listed in output')
123+
help='List additional fields in output')
124124
return parser
125125

126126
def take_action(self, parsed_args):

openstackclient/identity/v3/group.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ def get_parser(self, prog_name):
197197
'--long',
198198
action='store_true',
199199
default=False,
200-
help='Additional fields are listed in output',
200+
help='List additional fields in output',
201201
)
202202
return parser
203203

openstackclient/identity/v3/policy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def get_parser(self, prog_name):
3737
'--type',
3838
metavar='<policy-type>',
3939
default="application/json",
40-
help='New MIME Type of the policy blob - i.e.: application/json',
40+
help='New MIME type of the policy blob - i.e.: application/json',
4141
)
4242
parser.add_argument(
4343
'blob_file',

openstackclient/identity/v3/token.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -213,12 +213,12 @@ def get_parser(self, prog_name):
213213
parser.add_argument(
214214
'user',
215215
metavar='<user>',
216-
help='Name or Id of user',
216+
help='Name or ID of user',
217217
)
218218
parser.add_argument(
219219
'access_key',
220220
metavar='<access-key>',
221-
help='Access Token to be deleted',
221+
help='Access token to be deleted',
222222
)
223223
return parser
224224

@@ -243,7 +243,7 @@ def get_parser(self, prog_name):
243243
parser.add_argument(
244244
'user',
245245
metavar='<user>',
246-
help='Name or Id of user',
246+
help='Name or ID of user',
247247
)
248248
return parser
249249

0 commit comments

Comments
 (0)