From 39567df190b0e46706d7bab32c58f86ee8786aa1 Mon Sep 17 00:00:00 2001
From: Rodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>
Date: Mon, 28 Nov 2016 16:48:22 +0000
Subject: [PATCH] Fix broken Windows compatibility in ovs_lib

This patch changes the ip_lib used. Substitutes the
the Linux implementation for the generic wrapper.

Closes-Bug: #1644878
Change-Id: Ida1b3586d8d6b5fda69286aa1428d31d16010d71
---
 neutron/agent/common/ovs_lib.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/neutron/agent/common/ovs_lib.py b/neutron/agent/common/ovs_lib.py
index 6261fabdd57..4bb08b4603f 100644
--- a/neutron/agent/common/ovs_lib.py
+++ b/neutron/agent/common/ovs_lib.py
@@ -27,8 +27,8 @@ import six
 import tenacity
 
 from neutron._i18n import _, _LE, _LI, _LW
+from neutron.agent.common import ip_lib
 from neutron.agent.common import utils
-from neutron.agent.linux import ip_lib
 from neutron.agent.ovsdb import api as ovsdb
 from neutron.conf.agent import ovs_conf
 from neutron.plugins.common import constants as p_const