37 lines
1.2 KiB
Diff
37 lines
1.2 KiB
Diff
From 91ebd644ed9811cc822d773914590d5b4659bed4 Mon Sep 17 00:00:00 2001
|
|
From: yatin <ykarel@redhat.com>
|
|
Date: Tue, 17 Jul 2018 10:17:44 +0530
|
|
Subject: [PATCH] use plugin utils from neutron-lib
|
|
|
|
Upstream switched to neutron_lib usage in
|
|
https://review.openstack.org/#/c/565284/.
|
|
|
|
Change-Id: I88672f7ddd05ab277281772787666206f45e45ca
|
|
---
|
|
neutron/cmd/destroy_patch_ports.py | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/neutron/cmd/destroy_patch_ports.py b/neutron/cmd/destroy_patch_ports.py
|
|
index 8c3ea98c1..76d9ebff8 100644
|
|
--- a/neutron/cmd/destroy_patch_ports.py
|
|
+++ b/neutron/cmd/destroy_patch_ports.py
|
|
@@ -15,6 +15,7 @@
|
|
|
|
import sys
|
|
|
|
+from neutron_lib.plugins import utils as p_utils
|
|
from neutron_lib.utils import helpers
|
|
from oslo_config import cfg
|
|
from oslo_log import log as logging
|
|
@@ -22,7 +23,6 @@ from oslo_log import log as logging
|
|
from neutron.agent.common import ovs_lib
|
|
from neutron.common import config as common_config
|
|
from neutron.conf.plugins.ml2.drivers import ovs_conf
|
|
-from neutron.plugins.common import utils as p_utils
|
|
from neutron.plugins.ml2.drivers.openvswitch.agent.common import constants
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
--
|
|
2.17.1
|
|
|