From 937478e00453ef83c2a7c29bfe33bc2400ac9303 Mon Sep 17 00:00:00 2001 From: 5epi0l <91630053+5epi0l@users.noreply.github.com> Date: Mon, 17 Nov 2025 11:40:27 +0530 Subject: Update fixtime.py --- FixTime/fixtime.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FixTime/fixtime.py b/FixTime/fixtime.py index ca2f0b2..cfbdd5a 100644 --- a/FixTime/fixtime.py +++ b/FixTime/fixtime.py @@ -120,7 +120,7 @@ def sync_time(time_str): log("[*] Disabling NTP", True) subprocess.run(["sudo", "timedatectl", "set-ntp", "off"], check=True, capture_output=True) log(f"[*] Setting time to {time_str}", True) - subprocess.run(["sudo", "date", "-s", time_str], check=True, capture_output=True) + subprocess.run(["sudo", "date", "-u", "-s", time_str], check=True, capture_output=True) print("[+] Time synced successfully") except: print("[-] Failed to sync time. Run with sudo") -- cgit v1.2.3