fix order status (corrupted domain)

This commit is contained in:
Cyrille L 2023-04-10 02:31:09 +02:00
parent 74ee30a10e
commit 64d57d682c
1 changed files with 2 additions and 2 deletions

View File

@ -38,10 +38,10 @@ import args, dom, logs, tyto, form
def domain():
if dom.hole: logs.out("13", '', True)
elif not dom.exists: logs.out("10", '', True)
elif dom.corrupt: logs.out("39", dom.shortname, True)
print("")
elif dom.corrupt: logs.out("39", dom.shortname, True)
elif dom.incomplete: logs.out("41", dom.shortname, False)
if dom.incomplete: logs.out("41", dom.shortname, False)
elif dom.active: logs.out("42", dom.shortname, False)
elif not dom.active: logs.out("40", dom.shortname, False)