Skip to content

Commit 2093a5b

Browse files
committed
Fix missing closing brackets in metavar
... to display the complete format in --help output. Change-Id: I4d0f044072b206f6205b4b4f4992fd08f01729d6
1 parent b3ae3f5 commit 2093a5b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

openstackclient/network/v2/network.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -665,12 +665,12 @@ def get_parser(self, prog_name):
665665
)
666666
parser.add_argument(
667667
'--description',
668-
metavar="<description",
668+
metavar="<description>",
669669
help=_("Set network description")
670670
)
671671
parser.add_argument(
672672
'--mtu',
673-
metavar="<mtu",
673+
metavar="<mtu>",
674674
help=_("Set network mtu")
675675
)
676676
port_security_group = parser.add_mutually_exclusive_group()

0 commit comments

Comments
 (0)