From 47a8518e49415847bd8a436afce9fbc73a2317d5 Mon Sep 17 00:00:00 2001 From: Gary Kotton Date: Wed, 23 Dec 2015 07:56:48 -0800 Subject: [PATCH] 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 --- neutron/agent/linux/dibbler.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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__) -- 2.45.2