Fix import statement order in nova/rpc.py

TrivialFix
Change-Id: Ic06fb25e002aaee636ffa29a0e920afb01cf5a0b
This commit is contained in:
Takashi NATSUME 2016-04-06 09:19:44 +09:00
parent 605bfb30f8
commit e5e54cdc6e
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,6 @@ __all__ = [
import functools
from nova.i18n import _
from oslo_log import log as logging
import oslo_messaging as messaging
from oslo_serialization import jsonutils
@ -36,6 +35,7 @@ from oslo_serialization import jsonutils
import nova.conf
import nova.context
import nova.exception
from nova.i18n import _
CONF = nova.conf.CONF