diff options
author | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2019-07-31 15:50:41 +0200 |
---|---|---|
committer | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2019-08-30 12:35:23 +0000 |
commit | 7b2ffa587235a47d4094787d72f38102089f402a (patch) | |
tree | 30e82af9cbab08a7fa028bb18f4f2987a3f74dfa /chromium/build/protoc_java.py | |
parent | d94af01c90575348c4e81a418257f254b6f8d225 (diff) | |
download | qtwebengine-chromium-7b2ffa587235a47d4094787d72f38102089f402a.tar.gz |
BASELINE: Update Chromium to 76.0.3809.94
Change-Id: I321c3f5f929c105aec0f98c5091ef6108822e647
Reviewed-by: Michael BrĂ¼ning <michael.bruning@qt.io>
Diffstat (limited to 'chromium/build/protoc_java.py')
-rwxr-xr-x | chromium/build/protoc_java.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/chromium/build/protoc_java.py b/chromium/build/protoc_java.py index 09cd8082b65..4eb8eaecbca 100755 --- a/chromium/build/protoc_java.py +++ b/chromium/build/protoc_java.py @@ -15,6 +15,8 @@ It performs the following steps: 4. Creates a new stamp file. """ +from __future__ import print_function + import os import optparse import shutil @@ -41,11 +43,11 @@ def main(argv): build_utils.CheckOptions(options, parser, ['protoc', 'proto_path']) if not options.java_out_dir and not options.srcjar: - print 'One of --java-out-dir or --srcjar must be specified.' + print('One of --java-out-dir or --srcjar must be specified.') return 1 if not options.nano and not options.protoc_javalite_plugin_dir: - print 'One of --nano or --protoc-javalite-plugin-dir must be specified.' + print('One of --nano or --protoc-javalite-plugin-dir must be specified.') return 1 with build_utils.TempDir() as temp_dir: |