Fix a typo error in a help message in the client

In the class UpdateAuditTemplate, there is a help message with an extra
')'.  This patch set removes that extra ')'.

Change-Id: I1463144e38ebb5db59f49a94406ff884f0e2450b
Closes-Bug: #1639681
This commit is contained in:
Tin Lam
2016-11-10 12:43:19 -06:00
parent 28acfe1535
commit c83499e85f

View File

@@ -249,7 +249,7 @@ class UpdateAuditTemplate(command.ShowOne):
'op',
metavar='<op>',
choices=['add', 'replace', 'remove'],
help=_("Operation: 'add'), 'replace', or 'remove'."))
help=_("Operation: 'add', 'replace', or 'remove'."))
parser.add_argument(
'attributes',
metavar='<path=value>',