From 17957e03eefaba5c8fc668da29b2a9aece447d99 Mon Sep 17 00:00:00 2001 From: Namonay Date: Mon, 2 Mar 2026 08:44:06 +0000 Subject: [PATCH] b --- client/bs_shutdown.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/bs_shutdown.py b/client/bs_shutdown.py index 9361424..9e80e6f 100644 --- a/client/bs_shutdown.py +++ b/client/bs_shutdown.py @@ -44,7 +44,7 @@ def set_shutdown(time, now): return LAST_VALUE = time print("[BS Shutdown] shutting down in " + str(time - now) + " seconds") - subprocess.run(["shutdown", "/s", "/t", (time - now), " "]) + subprocess.run(["shutdown", "/s", "/t", str(time - now), " "]) def remove_shutdown():