Skip to content

Commit 9d32f95

Browse files
committed
restore venv python
1 parent cda808e commit 9d32f95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/textual_dev/tools/run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def exec_python(args: Sequence[str], environment: dict[str, str]) -> None:
105105
if WINDOWS:
106106
subprocess.call([sys.executable, *args], env=environment)
107107
else:
108-
os.execve(sys.executable, [sys.executable, *args], environment)
108+
os.execve(sys.executable, ["python", *args], environment)
109109

110110

111111
def exec_command(

0 commit comments

Comments
 (0)