Move import down to correct group

The "from keystone.common import utils" import was located
in the third-party group, which is the incorrect import group.

This change moves it from the group of third part imports to the
correct local import group to be more consistent with the rest
of keystone and to follow the pep8 guidelines.

Change-Id: I1d7124e67cd5a522eeafceacf05ca4ffac9d8b68
This commit is contained in:
Gage Hugo 2017-06-30 15:44:50 -05:00
parent bebd7056ad
commit d4970d95ad

View File

@ -15,13 +15,13 @@
import datetime
import sys
from keystone.common import utils
from keystoneclient.common import cms
from oslo_serialization import jsonutils
import six
from keystone.common import controller
from keystone.common import dependency
from keystone.common import utils
from keystone.common import wsgi
import keystone.conf
from keystone import exception