From c74d9e296bc6ee9d167efd9dc56e5ea903dce98f Mon Sep 17 00:00:00 2001 From: Daniel Thompson Date: Sun, 2 Aug 2020 11:54:58 +0100 Subject: [PATCH] tools: preprocess: Ensure we use python3 interpreter Not being explicit about the correct python interpreter causes trouble on distros that do not alias python to python3 and/or that do not install python2 by default. Reported by: Mirko Covizzi Signed-off-by: Daniel Thompson --- tools/preprocess.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/preprocess.py b/tools/preprocess.py index 4c43c2a..0cd3bdf 100755 --- a/tools/preprocess.py +++ b/tools/preprocess.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # SPDX-License-Identifier: LGPL-3.0-or-later # Copyright (C) 2020 Daniel Thompson