Merge "Fix 'freezer client-delete' error"

This commit is contained in:
Jenkins 2017-04-07 16:13:53 +00:00 committed by Gerrit Code Review
commit e7271387a2

View File

@ -113,8 +113,8 @@ class ClientDelete(command.Command):
return parser
def take_action(self, parsed_args):
self.app.client.clients.delete(parsed_args.client_uuid)
logging.info('Client {0} deleted'.format(parsed_args.client_uuid))
self.app.client.clients.delete(parsed_args.client_id)
logging.info('Client {0} deleted'.format(parsed_args.client_id))
class ClientRegister(command.Command):