This commit is contained in:
iFargle
2023-02-22 21:34:35 +09:00
parent dad9a5655c
commit e70f4ddd9c
2 changed files with 7 additions and 9 deletions

View File

@@ -347,13 +347,11 @@ def thread_machine_content(machine, machine_content, idx):
expiry_parse = parser.parse(machine["expiry"])
expiry_local = expiry_parse.astimezone(timezone)
expiry_delta = local_time - expiry_local
expiry_print = helper.pretty_print_duration(expiry_delta)
expiry_delta = expiry_local - local_time
expiry_print = helper.pretty_print_duration(expiry_delta, "expiry")
expiry_time = str(expiry_local.strftime('%A %m/%d/%Y, %H:%M:%S'))+" "+str(timezone)+" ("+str(expiry_print)+")"
testasdf = expiry_local - local_time
LOG.error(machine["name"]+": expiry_delta ("+str(expiry_delta)+"): "+str(expiry_delta.days)+"d "+str(expiry_delta.seconds)+"s")
LOG.error(machine["name"]+": testasdf ("+str(testasdf) +"): "+str(testasdf.days) +"d "+str(testasdf.seconds) +"s")
# Get the first 10 characters of the PreAuth Key:
if machine["preAuthKey"]: