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 974ee815f..ad89c83f6 100644
--- a/heat/common/context.py
+++ b/heat/common/context.py
@@ -156,8 +156,8 @@ class RequestContext(context.RequestContext):
return self._clients
def to_dict(self):
- user_idt = '{user} {tenant}'.format(user=self.user_id or '-',
- tenant=self.tenant_id or '-')
+ user_idt = u'{user} {tenant}'.format(user=self.user_id or '-',
+ tenant=self.tenant_id or '-')
return {'auth_token': self.auth_token,
'username': self.username,