1
0
Fork 0
mirror of synced 2024-06-15 17:14:43 +12:00

Always return the absolute path to the exectuble

This commit is contained in:
loathingKernel 2022-09-08 20:25:55 +03:00
parent 70328d6472
commit c8586d2beb

View file

@ -189,6 +189,7 @@ def get_rare_executable() -> List[str]:
else:
executable = [sys.executable]
executable[0] = os.path.abspath(executable[0])
return executable