summaryrefslogtreecommitdiff
path: root/heat/common/context.py
diff options
context:
space:
mode:
Diffstat (limited to 'heat/common/context.py')
-rw-r--r--heat/common/context.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/heat/common/context.py b/heat/common/context.py
index a30b1e26b..c72c8367b 100644
--- a/heat/common/context.py
+++ b/heat/common/context.py
@@ -155,8 +155,8 @@ class RequestContext(context.RequestContext):
return self._clients
def to_dict(self):
- user_idt = u'{user} {tenant}'.format(user=self.user_id or '-',
- tenant=self.project_id or '-')
+ user_idt = u'{user} {project}'.format(user=self.user_id or '-',
+ project=self.project_id or '-')
return {'auth_token': self.auth_token,
'username': self.username,