From 82141c4baf5a1436b6eca8b1efa6e2bff3991179 Mon Sep 17 00:00:00 2001 From: keigel2001 Date: Mon, 30 Aug 2021 21:30:06 +0200 Subject: get_lexer_list.py: Use python3 instead of python Starting with the Debian 11 (bullseye) and Ubuntu 20.04 LTS (focal) releases, all python packages use explicit python3 or python2 interpreter and do not use unversioned /usr/bin/python at all. No packaged scripts should depend on the existence of '/usr/bin/python'. --- scripts/get_lexer_list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/get_lexer_list.py b/scripts/get_lexer_list.py index 1392459a8..e7636b46d 100755 --- a/scripts/get_lexer_list.py +++ b/scripts/get_lexer_list.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import pygments.lexers import json -- cgit v1.2.3-24-g4f1b