From 0555a3f7676f182d00bb80c294c7f23f3dfbad75 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Tue, 27 Sep 2022 09:50:02 +0200 Subject: [PATCH] Explicitly use python2 in the interpreter line Many Distributions have now switched to having python3 set as default, so the scripts need to explicitly specify that they want version 2. In the long run, the scripts will have to be updated eventually. Signed-off-by: David Oberhollenzer --- html.py | 2 +- nand-data/csvtohtml.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/html.py b/html.py index c27091a..33bf17a 100755 --- a/html.py +++ b/html.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 # # Simple XML to HTML converter. # diff --git a/nand-data/csvtohtml.py b/nand-data/csvtohtml.py index 36c72aa..a52c4d7 100755 --- a/nand-data/csvtohtml.py +++ b/nand-data/csvtohtml.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 import sys, getopt, csv, operator -- 2.49.0