Fix a couple i18n issues in glance/common/auth.py.

Change-Id: I6944bb46fbd6784b7e9b84d05d453b56bf62d21c
This commit is contained in:
Dan Prince 2012-08-10 09:14:55 -04:00
parent ae6e288072
commit d9ec683793

View File

@ -183,7 +183,7 @@ class KeystoneStrategy(BaseStrategy):
elif resp.status == 404: elif resp.status == 404:
raise exception.AuthUrlNotFound(url=token_url) raise exception.AuthUrlNotFound(url=token_url)
else: else:
raise Exception(_('Unexpected response: %s' % resp.status)) raise Exception(_('Unexpected response: %s') % resp.status)
def _v2_auth(self, token_url): def _v2_auth(self, token_url):
@ -268,7 +268,7 @@ def get_endpoint(service_catalog, service_type='image', endpoint_region=None,
try: try:
s_type = service['type'] s_type = service['type']
except KeyError: except KeyError:
msg = _('Encountered service with no "type": %s' % s_type) msg = _('Encountered service with no "type": %s') % s_type
LOG.warn(msg) LOG.warn(msg)
continue continue