mirror of
https://opendev.org/openstack/python-openstackclient.git
synced 2026-01-17 07:20:45 +00:00
Fix missing closing brackets in metavar
... to display the complete format in --help output. Change-Id: I4d0f044072b206f6205b4b4f4992fd08f01729d6
This commit is contained in:
parent
b3ae3f5552
commit
2093a5b681
1 changed files with 2 additions and 2 deletions
|
|
@ -665,12 +665,12 @@ class SetNetwork(common.NeutronCommandWithExtraArgs):
|
|||
)
|
||||
parser.add_argument(
|
||||
'--description',
|
||||
metavar="<description",
|
||||
metavar="<description>",
|
||||
help=_("Set network description")
|
||||
)
|
||||
parser.add_argument(
|
||||
'--mtu',
|
||||
metavar="<mtu",
|
||||
metavar="<mtu>",
|
||||
help=_("Set network mtu")
|
||||
)
|
||||
port_security_group = parser.add_mutually_exclusive_group()
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue