summaryrefslogtreecommitdiffstats
path: root/nova/rpc.py
diff options
context:
space:
mode:
authorJesse Andrews <jesse@gigantor.local>2010-07-15 18:13:48 -0500
committerJesse Andrews <jesse@gigantor.local>2010-07-15 18:13:48 -0500
commit3ce6ec1a83731da868c5a77c4684808a54ffd8fd (patch)
tree9d92e81ec74926526841583737169d034c70de3a /nova/rpc.py
parentc8fdce011092f23efd55385b45db8e6f3886beb1 (diff)
downloadnova-3ce6ec1a83731da868c5a77c4684808a54ffd8fd.tar.gz
nova-3ce6ec1a83731da868c5a77c4684808a54ffd8fd.tar.xz
nova-3ce6ec1a83731da868c5a77c4684808a54ffd8fd.zip
reorder imports spacing
Diffstat (limited to 'nova/rpc.py')
-rw-r--r--nova/rpc.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/nova/rpc.py b/nova/rpc.py
index 1b171f5d9..58a2b29cf 100644
--- a/nova/rpc.py
+++ b/nova/rpc.py
@@ -21,14 +21,12 @@ AMQP-based RPC. Queues have consumers and publishers.
No fan-out support yet.
"""
+from carrot import connection
+from carrot import messaging
import json
import logging
import sys
import uuid
-
-
-from carrot import connection
-from carrot import messaging
from twisted.internet import defer
from twisted.internet import reactor
from twisted.internet import task