diff options
author | 2021-08-27 11:54:19 -0700 | |
---|---|---|
committer | 2021-08-27 11:54:19 -0700 | |
commit | cce6d652c5621a77d0e51ac242ca9d7910196936 (patch) | |
tree | e13c83c0243cf0281905669b2adf1e3a9c093e39 | |
parent | 92aa7b712ec0eef857efce832f6479c67fd3587b (diff) |
Make this script use python3.
There is nothing in this script that is not python3, so
make it python3. Without this, a system without python will
fail when trying to run gdbclient.py.
Test: Ran gdbclient.py on a system without a python executable.
Change-Id: I9f8418932628569c445ee01bc6f9ead8aed7989f
-rwxr-xr-x | scripts/get_clang_version.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/get_clang_version.py b/scripts/get_clang_version.py index f6efc5f82..17bc88bbd 100755 --- a/scripts/get_clang_version.py +++ b/scripts/get_clang_version.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # # Copyright (C) 2021 The Android Open Source Project # |