diff options
author | Jenkins <jenkins@review.openstack.org> | 2013-05-29 17:20:58 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2013-05-29 17:20:58 +0000 |
commit | 09bb45688609d41d44d17c65ac08cf9e07f89654 (patch) | |
tree | 7c0ca84d10a927f1178e2e18f1c302381edf25b9 | |
parent | b8b096527e2f18ffd736254c630e31487f00d707 (diff) | |
parent | 17647e0a212e4db2851cdfb0f3fd05bbf46ac034 (diff) | |
download | nova-09bb45688609d41d44d17c65ac08cf9e07f89654.tar.gz nova-09bb45688609d41d44d17c65ac08cf9e07f89654.tar.xz nova-09bb45688609d41d44d17c65ac08cf9e07f89654.zip |
Merge "Fix internationalization for some LOG messages"
-rw-r--r-- | nova/api/openstack/__init__.py | 4 |
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 |