| Index: third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/git.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/git.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/git.py
|
| index 947cf91aea2fa6502b6d3f235c0b57638fc55962..87e40538918547a81af5a77c48bb723bf89d7bc9 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/git.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/git.py
|
| @@ -72,7 +72,7 @@ class Git(SCM):
|
| executive = executive or Executive()
|
| return executive.run_command([cls.executable_name, 'rev-parse', '--is-inside-work-tree'],
|
| cwd=path, error_handler=Executive.ignore_error).rstrip() == "true"
|
| - except OSError as e:
|
| + except OSError:
|
| # The Windows bots seem to through a WindowsError when git isn't installed.
|
| return False
|
|
|
|
|