Commit 210563a1 authored by Fabrice de Gans's avatar Fabrice de Gans Committed by V8 LUCI CQ

[code-health] Fix syntax error in python file

Bug: v8:8594
Change-Id: I734a548b074567af3cad6359ef96640cbf0eb6f3
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3892137
Commit-Queue: Fabrice de Gans <fdegans@chromium.org>
Auto-Submit: Fabrice de Gans <fdegans@chromium.org>
Reviewed-by: 's avatarAlexander Schulze <alexschulze@chromium.org>
Cr-Commit-Position: refs/heads/main@{#83174}
parent 704c571d
......@@ -23,7 +23,7 @@ OUT_PATH = os.path.join(BASE_PATH, 'out.js')
FAILURES_JSON_PATH = os.path.join(
BASE_PATH, 'workdir', 'output', 'failures.json')
assert(len(sys.argv) > 1, 'Need to specify minimizer path.')
assert len(sys.argv) > 1, 'Need to specify minimizer path.'
minimizer_path = sys.argv[1]
def getcmd(command):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment