From d1d476c830f30131c1d0e2a75251961dcc4a5915 Mon Sep 17 00:00:00 2001 From: norohind <60548839+norohind@users.noreply.github.com> Date: Thu, 4 Nov 2021 23:20:51 +0300 Subject: [PATCH] fix for get_prev_serv_reboot: timezones exist --- utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.py b/utils.py index 5b801e3..e34a0b2 100644 --- a/utils.py +++ b/utils.py @@ -504,7 +504,7 @@ def get_previous_thursday_severs_reboot_datetime() -> str: last_thursday = today - datetime.timedelta(days=offset_to_thursday) probably_last_server_reboot = datetime.datetime(last_thursday.year, last_thursday.month, last_thursday.day) + \ - datetime.timedelta(hours=10, minutes=30) + datetime.timedelta(hours=7, minutes=30) last_reboot_str: str = str()