fix: route remote control through provider startup args
lint / lint (push) Successful in 1m47s
test / unit (pull_request) Successful in 32s
test / integration (pull_request) Successful in 17s

This commit is contained in:
2026-06-25 00:30:50 -04:00
parent 8a092504b8
commit 7f274f463d
14 changed files with 56 additions and 28 deletions
+1 -1
View File
@@ -130,7 +130,7 @@ def _capture_print(plan: DockerBottlePlan | SmolmachinesBottlePlan) -> list[str]
orig = sys.stderr
sys.stderr = buf
try:
plan.print(remote_control=False)
plan.print()
finally:
sys.stderr = orig
return buf.getvalue().splitlines()