dibbler: fix import order

The commit 4b329c345c 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
This commit is contained in:
Gary Kotton 2015-12-23 07:56:48 -08:00
parent 520fe8fc37
commit 47a8518e49
1 changed files with 4 additions and 4 deletions

View File

@ -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__)