summaryrefslogtreecommitdiffstats
path: root/openstack/common
diff options
context:
space:
mode:
authorJulien Danjou <julien@danjou.info>2012-06-20 14:09:23 +0200
committerJulien Danjou <julien@danjou.info>2012-06-20 14:10:27 +0200
commitb76f83946ff9adbfbb482c9ec2fe623e679dde07 (patch)
treea425377c13489bbf3ad1dbbe0da7163897956390 /openstack/common
parente31b5ceb5592026c23ace2608c0af9f5487d1f07 (diff)
downloadoslo-b76f83946ff9adbfbb482c9ec2fe623e679dde07.tar.gz
oslo-b76f83946ff9adbfbb482c9ec2fe623e679dde07.tar.xz
oslo-b76f83946ff9adbfbb482c9ec2fe623e679dde07.zip
Fix import usage in AMQP for rpc.common
The existing line is technically OK, but it's not replaced by update.py on file copy, therefore the import of common.rpc.amqp fails. This fixes this problem by using a different syntax, the one that update.py understand. Change-Id: Id30f581477ab09c2b66fc0d65f1029554b311549 Signed-off-by: Julien Danjou <julien@danjou.info>
Diffstat (limited to 'openstack/common')
-rw-r--r--openstack/common/rpc/amqp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/openstack/common/rpc/amqp.py b/openstack/common/rpc/amqp.py
index b7935c3..9f9cd54 100644
--- a/openstack/common/rpc/amqp.py
+++ b/openstack/common/rpc/amqp.py
@@ -36,7 +36,7 @@ from eventlet import semaphore
from openstack.common import excutils
from openstack.common import local
-import openstack.common.rpc.common as rpc_common
+from openstack.common.rpc import common as rpc_common
LOG = logging.getLogger(__name__)