summaryrefslogtreecommitdiffstats
path: root/keystone/common/controller.py
diff options
context:
space:
mode:
authorYuriy Taraday <yorik.sar@gmail.com>2013-01-15 22:55:07 +0400
committerYuriy Taraday <yorik.sar@gmail.com>2013-01-15 23:09:39 +0400
commitf237a67026b330a17b3c937c746d601ca6e63b24 (patch)
treeeab4e910136f8938c1c0f1451f8935bea4410e20 /keystone/common/controller.py
parente1abe0fca3ccff8fee425796de23899658403b0b (diff)
downloadkeystone-f237a67026b330a17b3c937c746d601ca6e63b24.tar.gz
keystone-f237a67026b330a17b3c937c746d601ca6e63b24.tar.xz
keystone-f237a67026b330a17b3c937c746d601ca6e63b24.zip
Fix i18n of string templates.
Change-Id: I4ed11b43b8b1072094bd2b6f88687900c858bafe
Diffstat (limited to 'keystone/common/controller.py')
-rw-r--r--keystone/common/controller.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/keystone/common/controller.py b/keystone/common/controller.py
index 5af85c6e..05d074e7 100644
--- a/keystone/common/controller.py
+++ b/keystone/common/controller.py
@@ -18,9 +18,9 @@ def protected(f):
if not context['is_admin']:
action = 'identity:%s' % f.__name__
- LOG.debug(_('RBAC: Authorizing %s(%s)' % (
+ LOG.debug(_('RBAC: Authorizing %s(%s)') % (
action,
- ', '.join(['%s=%s' % (k, kwargs[k]) for k in kwargs]))))
+ ', '.join(['%s=%s' % (k, kwargs[k]) for k in kwargs])))
try:
token_ref = self.token_api.get_token(