| Index: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/layout_test_finder.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/layout_test_finder.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/layout_test_finder.py
|
| index e0f620564ee8264cf54a86d9890b2aefa48544b4..c3802e7c7493ae37174aba1d7e0a26792dc6de65 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/layout_test_finder.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/layout_test_finder.py
|
| @@ -138,8 +138,8 @@ class LayoutTestFinder(object):
|
| line = self._strip_comments(line)
|
| if line:
|
| tests.append(line)
|
| - except IOError as e:
|
| - if e.errno == errno.ENOENT:
|
| + except IOError as error:
|
| + if error.errno == errno.ENOENT:
|
| _log.critical('')
|
| _log.critical('--test-list file "%s" not found', file)
|
| raise
|
|
|