auto-schedule: revert time correction and change command to old
This commit is contained in:
parent
d87de2c767
commit
43b5984517
|
@ -1,4 +1,4 @@
|
||||||
if self.MESSAGE["text"].lower() == "!пара":
|
if self.MESSAGE["text"].lower() == "!пара-old":
|
||||||
try:
|
try:
|
||||||
schedule = json.loads( readfile(self.path + "schedule.json") )
|
schedule = json.loads( readfile(self.path + "schedule.json") )
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ if self.MESSAGE["text"].lower() == "!пара":
|
||||||
|
|
||||||
current_week = current_time.isocalendar()[1] % 2
|
current_week = current_time.isocalendar()[1] % 2
|
||||||
current_day = current_time.weekday()
|
current_day = current_time.weekday()
|
||||||
current_seconds = (current_time.hour + 1) * 3600 + current_time.minute * 60 + current_time.second
|
current_seconds = current_time.hour * 3600 + current_time.minute * 60 + current_time.second
|
||||||
|
|
||||||
print(f"[DEBUG] Current day is {type(current_day)}({current_day})")
|
print(f"[DEBUG] Current day is {type(current_day)}({current_day})")
|
||||||
if current_day > 4 or current_day < 0:
|
if current_day > 4 or current_day < 0:
|
||||||
|
|
Loading…
Reference in New Issue