Index: third_party/WebKit/Tools/Scripts/webkitpy/common/system/filesystem_mock.py |
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/filesystem_mock.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/filesystem_mock.py |
index 6835a49fa5923a8b0197bda12d72ec73c364d540..a9d81410716cd9b763d578e2e14fab2e9724b520 100644 |
--- a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/filesystem_mock.py |
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/filesystem_mock.py |
@@ -204,7 +204,7 @@ class MockFileSystem(object): |
return path |
def listdir(self, path): |
- root, dirs, files = list(self.walk(path))[0] |
+ _, dirs, files = list(self.walk(path))[0] |
return dirs + files |
def walk(self, top): |