Fix help messages for update commands

Help messages for the host-update and lease-update commands were wrongly
referring to delete rather than update.

Change-Id: I489a30ec04e98e557256f8ad30757e9be82f22f1
Closes-Bug: #1643765
This commit is contained in:
Hiroaki Kobayashi
2016-11-22 14:35:58 +09:00
parent 88e036cb35
commit 22706c4605

View File

@@ -147,9 +147,9 @@ class UpdateCommand(ClimateCommand):
def get_parser(self, prog_name):
parser = super(UpdateCommand, self).get_parser(prog_name)
if self.allow_names:
help_str = 'ID or name of %s to delete'
help_str = 'ID or name of %s to update'
else:
help_str = 'ID of %s to delete'
help_str = 'ID of %s to update'
parser.add_argument(
'id', metavar=self.resource.upper(),
help=help_str % self.resource