Fix "openstack image unset" command's help message typo

Change-Id: Ie286d9ee6054cc2126473d7e6e77bafbfd80023b
Closes-Bug: #1712473
This commit is contained in:
lihaijing 2017-08-23 12:59:46 +08:00
parent 5cc4d5b530
commit d33ab499ed
1 changed files with 2 additions and 2 deletions

View File

@ -990,7 +990,7 @@ class UnsetImage(command.Command):
default=[], default=[],
action='append', action='append',
help=_("Unset a tag on this image " help=_("Unset a tag on this image "
"(repeat option to set multiple tags)"), "(repeat option to unset multiple tags)"),
) )
parser.add_argument( parser.add_argument(
"--property", "--property",
@ -999,7 +999,7 @@ class UnsetImage(command.Command):
default=[], default=[],
action='append', action='append',
help=_("Unset a property on this image " help=_("Unset a property on this image "
"(repeat option to set multiple properties)"), "(repeat option to unset multiple properties)"),
) )
return parser return parser