diff options
author | keigel2001 <keigel2001@users.noreply.github.com> | 2021-08-30 21:30:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-30 21:30:06 +0200 |
commit | 82141c4baf5a1436b6eca8b1efa6e2bff3991179 (patch) | |
tree | e5e4dc33ecf7d493fddfea28291c677a482668a6 | |
parent | 5a06078ec343cc2599d6cf0784f1275dd0f22594 (diff) |
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'.
-rwxr-xr-x | scripts/get_lexer_list.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |