commit | 3d369b48cbbbc33b7bc3768eaf9c486196b32887 | [log] [tgz] |
---|---|---|
author | Rico Wind <ricow@google.com> | Tue Jan 12 10:26:24 2021 +0100 |
committer | Rico Wind <ricow@google.com> | Tue Jan 12 10:00:35 2021 +0000 |
tree | f5446f7937ad28fcf0adfb61d9e907106ccea9e6 | |
parent | 5b5ce3c818b13d77a9f3051ec4a2742ae25be9c1 [diff] [blame] |
Make run_on_app_dump.py run with python3 Change-Id: I054acf4f25658c66ad4156217009fc48c678374e
diff --git a/tools/gradle.py b/tools/gradle.py index a52e3f3..b6f5187 100755 --- a/tools/gradle.py +++ b/tools/gradle.py
@@ -47,7 +47,7 @@ def PrintCmd(s): if type(s) is list: s = ' '.join(s) - print 'Running: %s' % s + print('Running: %s' % s) # I know this will hit os on windows eventually if we don't do this. sys.stdout.flush()