From 50b8d6307f92c26c10b769b58eb867856c5ed78a Mon Sep 17 00:00:00 2001 From: "Arnout Vandecappelle (Essensium/Mind)" Date: Wed, 22 Sep 2021 21:44:46 +0200 Subject: [PATCH] utils/diffconfig: use python3 explicitly Python 2 is EOL sice 2020 [1], it's still available on distros, but may not be installed by default (as being replaced by python3). A compatibility symlink python -> python3 may not be installed either. Convert the shebang line to the usual /usr/bin/env based line. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) Reviewed-by: Petr Vorel Signed-off-by: Thomas Petazzoni --- utils/diffconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/diffconfig b/utils/diffconfig index f1af23cfce..f490c5571f 100755 --- a/utils/diffconfig +++ b/utils/diffconfig @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python3 # # diffconfig - a tool to compare .config files. #