Skip to content

Commit

Permalink
Merge "Use localisation for logged warnings"
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenkins authored and openstack-gerrit committed Oct 2, 2013
2 parents 465142d + 88fbc48 commit a513ea7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keystone/identity/controllers.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def get_projects_for_token(self, context, **kw):
try:
token_ref = self.token_api.get_token(context['token_id'])
except exception.NotFound as e:
LOG.warning('Authentication failed: %s' % e)
LOG.warning(_('Authentication failed: %s') % e)
raise exception.Unauthorized(e)

user_ref = token_ref['user']
Expand Down

0 comments on commit a513ea7

Please sign in to comment.