]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
dibbler: fix import order
authorGary Kotton <gkotton@vmware.com>
Wed, 23 Dec 2015 15:56:48 +0000 (07:56 -0800)
committerGary Kotton <gkotton@vmware.com>
Wed, 23 Dec 2015 18:34:21 +0000 (10:34 -0800)
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

index f68c45c2242bbd53c19a8d18edd97981002b3093..14fc6b6acad4763c2cc2021aece54cbaa0f88021 100644 (file)
 #    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__)