fix timezone not found on windows (#568)

Co-authored-by: 7934-方露宇 <fangluyu@wondersgroup.com>

Rffan committed Jul 9, 2025 at 20:25 UTC fe1a3860958d74a5ee19eb0e92d69f228d41239d
1 file changed +2 -1
run_ui.py
+2 -1
@@ -23,7 +23,8 @@ from python.helpers.print_style import PrintStyle
23 # Set the new timezone to 'UTC'
24 os.environ["TZ"] = "UTC"
25 # Apply the timezone change
26 -time.tzset()
26 +if hasattr(time, 'tzset'):
27 + time.tzset()
28
29 # initialize the internal Flask server
30 webapp = Flask("app", static_folder=get_abs_path("./webui"), static_url_path="/")