@@ -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 (
0 commit comments