summaryrefslogtreecommitdiff
path: root/openstackclient/network/v2
diff options
context:
space:
mode:
authorZuul <zuul@review.openstack.org>2018-08-07 19:46:40 +0000
committerGerrit Code Review <review@openstack.org>2018-08-07 19:46:40 +0000
commita2e1e6b25caaafe79b9ab0c84af669a1f3b3ee55 (patch)
tree6a16de50aa762dd37b7f350add5c011fc54acd82 /openstackclient/network/v2
parent8e3eef2946f37e52d5d63cb5667b720ab4678a0d (diff)
parent6cb0f0f79c0625b72609683d81848a9cd0b290c7 (diff)
downloadpython-openstackclient-a2e1e6b25caaafe79b9ab0c84af669a1f3b3ee55.tar.gz
Merge "Fix missing trailing spaces in network help messages"
Diffstat (limited to 'openstackclient/network/v2')
-rw-r--r--openstackclient/network/v2/router.py2
-rw-r--r--openstackclient/network/v2/subnet.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/openstackclient/network/v2/router.py b/openstackclient/network/v2/router.py
index f0a51967..187c241f 100644
--- a/openstackclient/network/v2/router.py
+++ b/openstackclient/network/v2/router.py
@@ -563,7 +563,7 @@ class SetRouter(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)"
+ help=_("Desired IP and/or subnet (name or ID) "
"on external gateway: "
"subnet=<subnet>,ip-address=<ip-address> "
"(repeat option to set multiple fixed IP addresses)")
diff --git a/openstackclient/network/v2/subnet.py b/openstackclient/network/v2/subnet.py
index 9c56186f..2c4b9c1c 100644
--- a/openstackclient/network/v2/subnet.py
+++ b/openstackclient/network/v2/subnet.py
@@ -412,7 +412,7 @@ class ListSubnet(command.Lister):
choices=[4, 6],
metavar='<ip-version>',
dest='ip_version',
- help=_("List only subnets of given IP version in output."
+ help=_("List only subnets of given IP version in output. "
"Allowed values for IP version are 4 and 6."),
)
dhcp_enable_group = parser.add_mutually_exclusive_group()