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