From cab3256c10df65d5e21fe8f89f632c0bd94feeda Mon Sep 17 00:00:00 2001 From: Egor Matveev Date: Tue, 10 Jun 2025 02:04:24 +0300 Subject: [PATCH] fix --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index e3303bf..ab1a9ad 100644 --- a/main.py +++ b/main.py @@ -89,7 +89,7 @@ while True: print(container_id_run.code, container_id_run.out, container_id_run.err) - command = f"docker exec {container_id_run.out} ./refre.sh" + command = f"docker exec {container_id_run.out.strip()} ./refre.sh" print(command) restart = call(command) -- 2.45.2