From b76f83946ff9adbfbb482c9ec2fe623e679dde07 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Wed, 20 Jun 2012 14:09:23 +0200 Subject: 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 --- openstack/common/rpc/amqp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'openstack/common') 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__) -- cgit