| Index: PRESUBMIT.py
|
| diff --git a/PRESUBMIT.py b/PRESUBMIT.py
|
| index 8e9dc623f1d36d0f7e52e3474f9e1c0ddd2fe8fa..a94ccf8b0ec6f9990ea209b0223808360d1003e3 100755
|
| --- a/PRESUBMIT.py
|
| +++ b/PRESUBMIT.py
|
| @@ -39,11 +39,11 @@ def CheckBuildbot(input_api, output_api):
|
|
|
|
|
| def CheckDeps(input_api, output_api):
|
| + cmd = ['build_tools/python_wrapper', 'build_tools/check_deps.py']
|
| try:
|
| - subprocess.check_call(['build_tools/check_deps.py'])
|
| + subprocess.check_call(cmd)
|
| except subprocess.CalledProcessError:
|
| - message = 'update_mirror.py --check failed.'
|
| - message += '\nRun build_tools/update_mirror.py to update.'
|
| + message = 'check_deps.py failed.'
|
| return [output_api.PresubmitError(message)]
|
| return []
|
|
|
|
|