diff options
Diffstat (limited to 'tests/wpt/web-platform-tests/tools/lint/lint.py')
-rw-r--r-- | tests/wpt/web-platform-tests/tools/lint/lint.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/wpt/web-platform-tests/tools/lint/lint.py b/tests/wpt/web-platform-tests/tools/lint/lint.py index c1ffd50fb2b..058ee2bbd23 100644 --- a/tests/wpt/web-platform-tests/tools/lint/lint.py +++ b/tests/wpt/web-platform-tests/tools/lint/lint.py @@ -157,7 +157,7 @@ def check_git_ignore(repo_root, paths): if filter_string[0] != '!': errors += [("IGNORED PATH", "%s matches an ignore filter in .gitignore - " "please add a .gitignore exception" % path, path, None)] - except subprocess.CalledProcessError as e: + except subprocess.CalledProcessError: # Nonzero return code means that no match exists. pass return errors |