| Index: presubmit_canned_checks.py
|
| diff --git a/presubmit_canned_checks.py b/presubmit_canned_checks.py
|
| index 0d9d572476bc6937382e047ccdb3426a71fdbdce..20b9393217c35f0023d77cd648adcf834932794f 100644
|
| --- a/presubmit_canned_checks.py
|
| +++ b/presubmit_canned_checks.py
|
| @@ -626,8 +626,8 @@ def CheckBuildbotPendingBuilds(input_api, output_api, url, max_pendings,
|
| return []
|
|
|
|
|
| -def CheckOwners(input_api, output_api):
|
| - affected_files = set(input_api.change.AffectedFiles())
|
| +def CheckOwners(input_api, output_api, source_file_filter=None):
|
| + affected_files = set(input_api.change.AffectedFiles(source_file_filter))
|
| owners_db = input_api.owners_db
|
|
|
| if input_api.is_commiting:
|
|
|