Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1135)

Unified Diff: tools/web_dev_style/resource_checker.py

Issue 2889113002: web_dev_style: Fix errors in new directories and enable PRESUBMIT (Closed)
Patch Set: merge+fix Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/web_dev_style/resource_checker.py
diff --git a/tools/web_dev_style/resource_checker.py b/tools/web_dev_style/resource_checker.py
index 5b07c3698e5b669cdca2a3d88223072763f8f9c1..69b8185691db3358222902373cd79e30847ceea3 100644
--- a/tools/web_dev_style/resource_checker.py
+++ b/tools/web_dev_style/resource_checker.py
@@ -25,8 +25,8 @@ class ResourceChecker(object):
"""
results = []
- affected_files = self.input_api.change.AffectedFiles(
- file_filter=self.file_filter, include_deletes=False)
+ affected_files = self.input_api.AffectedFiles(file_filter=self.file_filter,
+ include_deletes=False)
for f in affected_files:
errors = []

Powered by Google App Engine
This is Rietveld 408576698