diff options
author | Ms2ger <Ms2ger@gmail.com> | 2016-06-24 10:13:49 +0200 |
---|---|---|
committer | Ms2ger <Ms2ger@gmail.com> | 2016-06-24 11:36:34 +0200 |
commit | 79b1e6c40cf7b668e006f8c4808f73521be654c2 (patch) | |
tree | 1d24f04a66efa00dce834a1f9de726d5564e4c23 /python/tidy/servo_tidy/tidy.py | |
parent | 581c8ba1c867ad378dee79b05b11648726ce5efb (diff) | |
download | servo-79b1e6c40cf7b668e006f8c4808f73521be654c2.tar.gz servo-79b1e6c40cf7b668e006f8c4808f73521be654c2.zip |
Update web-platform-tests to revision 346d5b51a122f7bb1c7747064499ef281a0200f7
Diffstat (limited to 'python/tidy/servo_tidy/tidy.py')
-rw-r--r-- | python/tidy/servo_tidy/tidy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/tidy/servo_tidy/tidy.py b/python/tidy/servo_tidy/tidy.py index 1bd0c528b7e..751039c0ad1 100644 --- a/python/tidy/servo_tidy/tidy.py +++ b/python/tidy/servo_tidy/tidy.py @@ -621,7 +621,7 @@ def check_wpt_lint_errors(files): if os.path.isdir(wpt_working_dir): site.addsitedir(wpt_working_dir) from tools.lint import lint - returncode = lint.lint(files) + returncode = lint.lint(wpt_working_dir, files, output_json=False) if returncode: yield ("WPT Lint Tool", "", "lint error(s) in Web Platform Tests: exit status {0}".format(returncode)) |