Fix order of std and third party lib import

There are wrong import grouping of std and third party lib.
This commit fix those.

Change-Id: I15e700737776e1488167c6a392be62871b67e0b9
This commit is contained in:
ghanshyam
2015-09-28 08:51:25 +09:00
parent ecbef55152
commit b847b170af
2 changed files with 2 additions and 2 deletions

View File

@@ -16,9 +16,10 @@
import logging import logging
import os import os
import shlex import shlex
import six
import subprocess import subprocess
import six
from tempest_lib import base from tempest_lib import base
import tempest_lib.cli.output_parser import tempest_lib.cli.output_parser
from tempest_lib import exceptions from tempest_lib import exceptions

View File

@@ -13,7 +13,6 @@
# under the License. # under the License.
import httplib2 import httplib2
from oslo_serialization import jsonutils as json from oslo_serialization import jsonutils as json
from oslotest import mockpatch from oslotest import mockpatch