From f5b1cb46aaa895d30eeec830bcecd3c21c41a177 Mon Sep 17 00:00:00 2001 From: DevilXD Date: Thu, 15 Dec 2022 22:27:58 +0100 Subject: [PATCH] Fix mnt task printing timestamps as UTC instead of local time --- twitch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twitch.py b/twitch.py index 9c9020f..730fdd6 100644 --- a/twitch.py +++ b/twitch.py @@ -1043,7 +1043,7 @@ class Twitch: logger.log( CALL, ( - f"Maintenance task waiting until: {next_trigger.strftime('%X')} " + f"Maintenance task waiting until: {next_trigger.astimezone().strftime('%X')} " f"({'Cleanup' if trigger_cleanup else 'Reload'})" ) )