Make all exectuable python scripts use python3

This is only relevant on linux/unix if running the scripts from a shell.
These two were the last where the call still used an unversioned python.

This has no reflex on the way that lyx calls the scripts or the python
version used since the #! "shebang line" is ignored.
This commit is contained in:
José Matos 2020-10-30 18:46:13 +00:00
parent ca3077b40b
commit c539b57a0e
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#! /usr/bin/python #! /usr/bin/python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# file configure.py # file configure.py

View File

@ -1,4 +1,4 @@
#!/usr/bin/python #!/usr/bin/python3
from subprocess import Popen, PIPE from subprocess import Popen, PIPE
from sys import argv, stderr, exit from sys import argv, stderr, exit