1
0
Fork 0
mirror of synced 2024-06-15 08:54:32 +12:00

auto prepend python binary to args when running system command with python file as first argument

This commit is contained in:
Nick Sweeting 2021-04-24 03:29:19 -04:00
parent fa84f749ff
commit 3992e0fee3

View file

@ -14,7 +14,7 @@ from crontab import CronTab
from .vendor.atomicwrites import atomic_write as lib_atomic_write
from .util import enforce_types, ExtendedEncoder
from .config import OUTPUT_PERMISSIONS
from .config import PYTHON_BINARY, OUTPUT_PERMISSIONS
@ -37,6 +37,9 @@ def run(*args, input=None, capture_output=True, timeout=None, check=False, text=
pgid = None
try:
if args[0].endswith('.py'):
args = (PYTHON_BINARY, *args)
with Popen(*args, start_new_session=start_new_session, **kwargs) as process:
pgid = os.getpgid(process.pid)
try: