On windows a path containint ':' is considered an absolute path.

Signed-off-by: Paul-Daniel Boca <pb...@cloudbasesolutions.com>
---
V2: No changes
V3: No changes
V4: No changes
V5: No changes
V6: No changes
---
 python/ovs/util.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/python/ovs/util.py b/python/ovs/util.py
index cb0574b..edcfe81 100644
--- a/python/ovs/util.py
+++ b/python/ovs/util.py
@@ -30,7 +30,7 @@ def abs_file_name(dir_, file_name):
 
     This differs from os.path.abspath() in that it will never change the
     meaning of a file name."""
-    if file_name.startswith('/'):
+    if file_name.startswith('/') or file_name.find(':') > -1:
         return file_name
     else:
         if dir_ is None or dir_ == "":
-- 
2.7.2.windows.1
_______________________________________________
dev mailing list
dev@openvswitch.org
http://openvswitch.org/mailman/listinfo/dev

Reply via email to