diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2020-12-09 14:50:17 +0300 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2021-01-22 00:34:44 +0300 |
commit | 51839e29cb5954470ea4db7236ef8c3d77a6e0bb (patch) | |
tree | 725da2ab3e712bfb8c1e3d22b515d3c529787e2f /scripts/bloat-o-meter | |
parent | 19c329f6808995b142b3966301f217c831e7cf31 (diff) | |
download | linux-51839e29cb5954470ea4db7236ef8c3d77a6e0bb.tar.xz |
scripts: switch explicitly to Python 3
Some distributions are about to switch to Python 3 support only.
This means that /usr/bin/python, which is Python 2, is not available
anymore. Hence, switch scripts to use Python 3 explicitly.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/bloat-o-meter')
-rwxr-xr-x | scripts/bloat-o-meter | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/bloat-o-meter b/scripts/bloat-o-meter index 652e9542043f..dcd8d8750b8b 100755 --- a/scripts/bloat-o-meter +++ b/scripts/bloat-o-meter @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # # Copyright 2004 Matt Mackall <mpm@selenic.com> # |