From abadd4c0bbc15bbf73e58c02a8f4a61f2a419f7a Mon Sep 17 00:00:00 2001 From: Vijayendra Radhakrishna Date: Mon, 19 Dec 2016 12:26:07 +0530 Subject: Follow OpenStack guidelines on imports - Imports are changed as per doc below although it's not a pep8/flake8 violation - http://docs.openstack.org/developer/hacking/#imports Change-Id: I89b1ec8f1eba9145f24507fb0f610e5f74c86ce8 Signed-off-by: Vijayendra Radhakrishna --- sfc/tests/functest/setup_scripts/prepare_odl_sfc.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'sfc/tests/functest/setup_scripts') diff --git a/sfc/tests/functest/setup_scripts/prepare_odl_sfc.py b/sfc/tests/functest/setup_scripts/prepare_odl_sfc.py index 280977bf..05990a08 100644 --- a/sfc/tests/functest/setup_scripts/prepare_odl_sfc.py +++ b/sfc/tests/functest/setup_scripts/prepare_odl_sfc.py @@ -11,11 +11,13 @@ # import os -import sys -import subprocess import paramiko +import subprocess +import sys + import functest.utils.functest_logger as ft_logger + logger = ft_logger.Logger("ODL_SFC").getLogger() SFC_REPO_DIR = "/home/opnfv/repos/sfc" -- cgit 1.2.3-korg