From 645732c65053468f94f970eaa3ecc0371b4f7413 Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Mon, 31 Oct 2016 14:31:54 +0100 Subject: [PATCH] Add missing path to the path length error. Partial cherry-pick of . --- tests/wpt/web-platform-tests/tools/lint/lint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/wpt/web-platform-tests/tools/lint/lint.py b/tests/wpt/web-platform-tests/tools/lint/lint.py index 2aee3da1c52..b05cfacfefc 100644 --- a/tests/wpt/web-platform-tests/tools/lint/lint.py +++ b/tests/wpt/web-platform-tests/tools/lint/lint.py @@ -42,7 +42,7 @@ def all_git_paths(repo_root): def check_path_length(repo_root, path): if len(path) + 1 > 150: - return [("PATH LENGTH", "/%s longer than maximum path length (%d > 150)" % (path, len(path) + 1), None)] + return [("PATH LENGTH", "/%s longer than maximum path length (%d > 150)" % (path, len(path) + 1), path, None)] return []