summaryrefslogtreecommitdiffstats
path: root/openstack/common
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2012-06-25 23:55:16 +0000
committerGerrit Code Review <review@openstack.org>2012-06-25 23:55:16 +0000
commit5a93e1d790422ddf21c223ec77b0355e6b790021 (patch)
tree5dbac6881521681693a7e2a8eb1d7b80df543888 /openstack/common
parente3ed98d7afea507a43fcb3450c4d0d9ebd83d84b (diff)
parenta3b222f52c90cf24ae4829d9c7aa3fd096b76c28 (diff)
downloadoslo-5a93e1d790422ddf21c223ec77b0355e6b790021.tar.gz
oslo-5a93e1d790422ddf21c223ec77b0355e6b790021.tar.xz
oslo-5a93e1d790422ddf21c223ec77b0355e6b790021.zip
Merge "Add missing gettextutils imports"
Diffstat (limited to 'openstack/common')
-rw-r--r--openstack/common/rpc/common.py1
-rw-r--r--openstack/common/rpc/impl_kombu.py1
2 files changed, 2 insertions, 0 deletions
diff --git a/openstack/common/rpc/common.py b/openstack/common/rpc/common.py
index a724ea2..1f421f3 100644
--- a/openstack/common/rpc/common.py
+++ b/openstack/common/rpc/common.py
@@ -26,6 +26,7 @@ from openstack.common import cfg
from openstack.common import importutils
from openstack.common import jsonutils
from openstack.common import local
+from openstack.common.gettextutils import _
LOG = logging.getLogger(__name__)
diff --git a/openstack/common/rpc/impl_kombu.py b/openstack/common/rpc/impl_kombu.py
index b78df37..66cf0a9 100644
--- a/openstack/common/rpc/impl_kombu.py
+++ b/openstack/common/rpc/impl_kombu.py
@@ -30,6 +30,7 @@ import kombu.entity
import kombu.messaging
from openstack.common import cfg
+from openstack.common.gettextutils import _
from openstack.common.rpc import amqp as rpc_amqp
from openstack.common.rpc import common as rpc_common