From b52d9c5375de491c8a2a0aaf2f015780267e169c Mon Sep 17 00:00:00 2001 From: Jamie Lennox Date: Fri, 22 Nov 2013 12:58:44 +1000 Subject: [PATCH] Fix trustee/trustor definitions The trustee is the person consuming the trust, the trustor is the person who creates the trust. Change-Id: I4d6c4b4f14c0dfcb3b41cd3e37aecd01487442fd --- keystoneclient/v3/contrib/trusts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/keystoneclient/v3/contrib/trusts.py b/keystoneclient/v3/contrib/trusts.py index 6709245e5..db1ef55e3 100644 --- a/keystoneclient/v3/contrib/trusts.py +++ b/keystoneclient/v3/contrib/trusts.py @@ -40,8 +40,8 @@ class TrustManager(base.CrudManager): def create(self, trustee_user, trustor_user, role_names=None, project=None, impersonation=False, expires_at=None): """Create a Trust. - :param string trustee_user: user who's authorization is being delegated - :param string trustor_user: user who is capable of consuming the trust + :param string trustee_user: user who is capable of consuming the trust + :param string trustor_user: user who's authorization is being delegated :param string role_names: subset of trustor's roles to be granted :param string project: project which the trustor is delegating :param boolean impersonation: enable explicit impersonation