| Index: PRESUBMIT.py
|
| diff --git a/PRESUBMIT.py b/PRESUBMIT.py
|
| index 54adadb4af02659e16723adc101393f9ee6630c8..1c161cb25e831b87744cbeef49fe79283e5303e0 100644
|
| --- a/PRESUBMIT.py
|
| +++ b/PRESUBMIT.py
|
| @@ -67,7 +67,6 @@ def _V8PresubmitChecks(input_api, output_api):
|
| input_api.PresubmitLocalPath(), 'tools'))
|
| from presubmit import CppLintProcessor
|
| from presubmit import SourceProcessor
|
| - from presubmit import CheckAuthorizedAuthor
|
| from presubmit import CheckStatusFiles
|
|
|
| results = []
|
| @@ -81,7 +80,8 @@ def _V8PresubmitChecks(input_api, output_api):
|
| "between declarations check failed"))
|
| if not CheckStatusFiles(input_api.PresubmitLocalPath()):
|
| results.append(output_api.PresubmitError("Status file check failed"))
|
| - results.extend(CheckAuthorizedAuthor(input_api, output_api))
|
| + results.extend(input_api.canned_checks.CheckAuthorizedAuthor(
|
| + input_api, output_api))
|
| return results
|
|
|
|
|
|
|