lang: Do not hardcode python executable name

Use sys.executable instead to ensure the executable used by "env" is
kept.
This commit is contained in:
Yuri D'Elia 2023-08-30 18:51:25 +02:00
parent 9e09e5014c
commit 105a6b9438
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ def main():
try: try:
subprocess.check_call( subprocess.check_call(
[ [
"python", sys.executable,
SCRIPT_PATH, SCRIPT_PATH,
"--no-missing", "--no-missing",
"-s", "-s",