Correct DisassociatingHealthmonitor help messages

Change-Id: Ie6f0419046f25c078f49c5343fbb4e10232a0b88
This commit is contained in:
guiyanxing 2016-08-15 15:26:41 +08:00 committed by Ihar Hrachyshka
parent 09e58e1593
commit 75468cc02f

View File

@ -145,10 +145,11 @@ class DisassociateHealthMonitor(neutronV20.NeutronCommand):
parser = super(DisassociateHealthMonitor, self).get_parser(prog_name)
parser.add_argument(
'health_monitor_id', metavar='HEALTH_MONITOR_ID',
help=_('Health monitor to associate.'))
help=_('Health monitor to disassociate.'))
parser.add_argument(
'pool_id', metavar='POOL',
help=_('ID of the pool to be associated with the health monitor.'))
help=_('ID of the pool to be disassociated with the health '
'monitor.'))
return parser
def take_action(self, parsed_args):