From: Gary Kotton Date: Wed, 23 Dec 2015 15:56:48 +0000 (-0800) Subject: dibbler: fix import order X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=47a8518e49415847bd8a436afce9fbc73a2317d5;p=openstack-build%2Fneutron-build.git dibbler: fix import order The commit 4b329c345c7820ff12bf25a91228cdfbf99500df added the file and the imports did not adhere to the existing conventions. Third party imports should be grouped together. In addition to this it removes an unncesary new line. TrivialFix Change-Id: Ieeb4d20887ba8e90ea4f7850101b97ccd6e86658 --- diff --git a/neutron/agent/linux/dibbler.py b/neutron/agent/linux/dibbler.py index f68c45c22..14fc6b6ac 100644 --- a/neutron/agent/linux/dibbler.py +++ b/neutron/agent/linux/dibbler.py @@ -13,10 +13,12 @@ # License for the specific language governing permissions and limitations # under the License. -import jinja2 import os -from oslo_config import cfg import shutil + +import jinja2 +from oslo_config import cfg +from oslo_log import log as logging import six from neutron.agent.linux import external_process @@ -25,8 +27,6 @@ from neutron.agent.linux import pd_driver from neutron.agent.linux import utils from neutron.common import constants from neutron.common import utils as common_utils -from oslo_log import log as logging - LOG = logging.getLogger(__name__)