Skip to content

Commit 6cb0f0f

Browse files
author
Brian Haley
committed
Fix missing trailing spaces in network help messages
Trivialfix Change-Id: I1eeab576e7f50d858860a19c045f24a33449dc92
1 parent 2b62b6e commit 6cb0f0f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

openstackclient/network/v2/router.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ def get_parser(self, prog_name):
563563
metavar='subnet=<subnet>,ip-address=<ip-address>',
564564
action=parseractions.MultiKeyValueAction,
565565
optional_keys=['subnet', 'ip-address'],
566-
help=_("Desired IP and/or subnet (name or ID)"
566+
help=_("Desired IP and/or subnet (name or ID) "
567567
"on external gateway: "
568568
"subnet=<subnet>,ip-address=<ip-address> "
569569
"(repeat option to set multiple fixed IP addresses)")

openstackclient/network/v2/subnet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ def get_parser(self, prog_name):
412412
choices=[4, 6],
413413
metavar='<ip-version>',
414414
dest='ip_version',
415-
help=_("List only subnets of given IP version in output."
415+
help=_("List only subnets of given IP version in output. "
416416
"Allowed values for IP version are 4 and 6."),
417417
)
418418
dhcp_enable_group = parser.add_mutually_exclusive_group()

0 commit comments

Comments
 (0)