fix saving princess's use of subprocess helpers (#5103)

This commit is contained in:
qwint
2025-06-13 05:28:58 -05:00
committed by GitHub
parent 52b11083fe
commit aecbb2ab02

View File

@@ -12,7 +12,7 @@ from .Constants import *
def launch_client(*args: str): def launch_client(*args: str):
from .Client import launch from .Client import launch
launch_subprocess(launch(*args), name=CLIENT_NAME) launch_subprocess(launch, name=CLIENT_NAME, args=args)
components.append( components.append(