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>
This commit is contained in:
Julien Danjou 2012-06-20 14:09:23 +02:00
parent e31b5ceb55
commit b76f83946f
1 changed files with 1 additions and 1 deletions

View File

@ -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__)