summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-05-29 17:20:58 +0000
committerGerrit Code Review <review@openstack.org>2013-05-29 17:20:58 +0000
commit09bb45688609d41d44d17c65ac08cf9e07f89654 (patch)
tree7c0ca84d10a927f1178e2e18f1c302381edf25b9
parentb8b096527e2f18ffd736254c630e31487f00d707 (diff)
parent17647e0a212e4db2851cdfb0f3fd05bbf46ac034 (diff)
downloadnova-09bb45688609d41d44d17c65ac08cf9e07f89654.tar.gz
nova-09bb45688609d41d44d17c65ac08cf9e07f89654.tar.xz
nova-09bb45688609d41d44d17c65ac08cf9e07f89654.zip
Merge "Fix internationalization for some LOG messages"
-rw-r--r--nova/api/openstack/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/api/openstack/__init__.py b/nova/api/openstack/__init__.py
index 113354d04..553bdbfaf 100644
--- a/nova/api/openstack/__init__.py
+++ b/nova/api/openstack/__init__.py
@@ -270,7 +270,7 @@ class APIRouterV3(base_wsgi.Router):
"""
handler = ext.obj
- LOG.debug("Running _register_resources on %s", ext.obj)
+ LOG.debug(_("Running _register_resources on %s"), ext.obj)
for resource in handler.get_resources():
LOG.debug(_('Extended resource: %s'), resource.collection)
@@ -312,7 +312,7 @@ class APIRouterV3(base_wsgi.Router):
"""
handler = ext.obj
- LOG.debug("Running _register_controllers on %s", ext.obj)
+ LOG.debug(_("Running _register_controllers on %s"), ext.obj)
for extension in handler.get_controller_extensions():
ext_name = extension.extension.name