diff options
| author | Jenkins <jenkins@review.openstack.org> | 2016-04-13 21:22:50 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2016-04-13 21:22:50 +0000 |
| commit | be6027e09b806496d20b833a5f9ed6fcf44156b6 (patch) | |
| tree | cdf872976e256d5ed0e1fed18af80e5ed37e1bed /openstackclient/network/v2/subnet.py | |
| parent | 52b70a99ed39085256a16a157098cc16ed2e7232 (diff) | |
| parent | 32c627eaf0481eb593388d2d76abffcf2b721136 (diff) | |
| download | python-openstackclient-be6027e09b806496d20b833a5f9ed6fcf44156b6.tar.gz | |
Merge "Doc: Unify repeatable option comments"
Diffstat (limited to 'openstackclient/network/v2/subnet.py')
| -rw-r--r-- | openstackclient/network/v2/subnet.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/openstackclient/network/v2/subnet.py b/openstackclient/network/v2/subnet.py index abe49a69..3d539fea 100644 --- a/openstackclient/network/v2/subnet.py +++ b/openstackclient/network/v2/subnet.py @@ -52,15 +52,15 @@ def _get_common_parse_arguments(parser): required_keys=['start', 'end'], help='Allocation pool IP addresses for this subnet ' 'e.g.: start=192.168.199.2,end=192.168.199.254 ' - '(This option can be repeated)', + '(repeat option to add multiple IP addresses)', ) parser.add_argument( '--dns-nameserver', metavar='<dns-nameserver>', action='append', dest='dns_nameservers', - help='DNS name server for this subnet ' - '(This option can be repeated)', + help='DNS server for this subnet ' + '(repeat option to set multiple DNS servers)', ) parser.add_argument( '--host-route', @@ -72,7 +72,7 @@ def _get_common_parse_arguments(parser): 'e.g.: destination=10.10.0.0/16,gateway=192.168.71.254 ' 'destination: destination subnet (in CIDR notation) ' 'gateway: nexthop IP address ' - '(This option can be repeated)', + '(repeat option to add multiple routes)', ) |
