diff options
| author | Jenkins <jenkins@review.openstack.org> | 2017-04-04 12:32:55 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2017-04-04 12:32:55 +0000 |
| commit | c7e7f2b7303ad55befb9b42cada2bbe336a4cf0e (patch) | |
| tree | ababb689784414c056107cfe808a084c5b4b7187 /openstackclient/network/v2/port.py | |
| parent | 8a1f4b6592a91ed3b2cd65d6fb0217afa1cf5e8d (diff) | |
| parent | 1686dc54f09b6e77b1de3abc708c297710987a04 (diff) | |
| download | python-openstackclient-c7e7f2b7303ad55befb9b42cada2bbe336a4cf0e.tar.gz | |
Merge "Help/docs cleanups: marker, limit, ip-address metavars"
Diffstat (limited to 'openstackclient/network/v2/port.py')
| -rw-r--r-- | openstackclient/network/v2/port.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/openstackclient/network/v2/port.py b/openstackclient/network/v2/port.py index f77f566d..9d598fab 100644 --- a/openstackclient/network/v2/port.py +++ b/openstackclient/network/v2/port.py @@ -301,7 +301,7 @@ class CreatePort(command.ShowOne): metavar='subnet=<subnet>,ip-address=<ip-address>', action=parseractions.MultiKeyValueAction, optional_keys=['subnet', 'ip-address'], - help=_("Desired IP and/or subnet (name or ID) for this port: " + help=_("Desired IP and/or subnet for this port (name or ID): " "subnet=<subnet>,ip-address=<ip-address> " "(repeat option to set multiple fixed IP addresses)") ) @@ -496,9 +496,9 @@ class ListPort(command.Lister): metavar='subnet=<subnet>,ip-address=<ip-address>', action=parseractions.MultiKeyValueAction, optional_keys=['subnet', 'ip-address'], - help=_("Desired IP and/or subnet (name or ID) for filtering " - "ports: subnet=<subnet>,ip-address=<ip-address> " - "(repeat option to set multiple fixed IP addresses)") + help=_("Desired IP and/or subnet for filtering ports " + "(name or ID): subnet=<subnet>,ip-address=<ip-address> " + "(repeat option to set multiple fixed IP addresses)"), ) return parser @@ -593,7 +593,7 @@ class SetPort(command.Command): metavar='subnet=<subnet>,ip-address=<ip-address>', action=parseractions.MultiKeyValueAction, optional_keys=['subnet', 'ip-address'], - help=_("Desired IP and/or subnet (name or ID) for this port: " + help=_("Desired IP and/or subnet for this port (name or ID): " "subnet=<subnet>,ip-address=<ip-address> " "(repeat option to set multiple fixed IP addresses)") ) @@ -757,8 +757,8 @@ class UnsetPort(command.Command): metavar='subnet=<subnet>,ip-address=<ip-address>', action=parseractions.MultiKeyValueAction, optional_keys=['subnet', 'ip-address'], - help=_("Desired IP and/or subnet (name or ID) which should be " - "removed from this port: subnet=<subnet>," + help=_("Desired IP and/or subnet which should be " + "removed from this port (name or ID): subnet=<subnet>," "ip-address=<ip-address> (repeat option to unset multiple " "fixed IP addresses)")) |
