Index: Tools/Scripts/webkitpy/common/system/filesystem.py |
diff --git a/Tools/Scripts/webkitpy/common/system/filesystem.py b/Tools/Scripts/webkitpy/common/system/filesystem.py |
index fdf43473b1384eab7642d710ba827835e8ecbb9f..a8c3814b4c50578a77580829412c4f997f7afc45 100644 |
--- a/Tools/Scripts/webkitpy/common/system/filesystem.py |
+++ b/Tools/Scripts/webkitpy/common/system/filesystem.py |
@@ -46,6 +46,7 @@ class FileSystem(object): |
or relative.""" |
sep = os.sep |
pardir = os.pardir |
+ pathsep = os.pathsep |
Dirk Pranke
2015/06/15 23:41:48
You shouldn't need this (see other comments).
burnik
2015/06/16 09:24:34
Done.
|
def abspath(self, path): |
return os.path.abspath(path) |