diff options
Diffstat (limited to 'python')
-rw-r--r-- | python/requirements.txt | 2 | ||||
-rw-r--r-- | python/servo/lints/wpt_lint.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/python/requirements.txt b/python/requirements.txt index 11d7910b94d..162e68787d1 100644 --- a/python/requirements.txt +++ b/python/requirements.txt @@ -5,7 +5,7 @@ blessings == 1.6 mach == 0.6.0 mozdebug == 0.1 mozinfo == 0.8 -mozlog == 3.5 +mozlog == 3.6 setuptools == 18.5 toml == 0.9.2 diff --git a/python/servo/lints/wpt_lint.py b/python/servo/lints/wpt_lint.py index b1b98eec97a..a1c7e528c77 100644 --- a/python/servo/lints/wpt_lint.py +++ b/python/servo/lints/wpt_lint.py @@ -36,6 +36,6 @@ class Lint(LintRunner): from tools.lint import lint sys.path.remove(wpt_working_dir) file_dir = os.path.abspath(os.path.join(WPT_PATH, suite)) - returncode = lint.lint(file_dir, list(files), output_format="json", css_mode=False) + returncode = lint.lint(file_dir, list(files), output_format="json") if returncode: yield ("WPT Lint Tool", "", "lint error(s) in Web Platform Tests: exit status %s" % returncode) |