stop treating unexpected status as error
This commit is contained in:
parent
9c19ad24ba
commit
1fce51c104
@ -66,7 +66,8 @@ def main():
|
||||
if status == "Appeal Received":
|
||||
status = "Appeal In Progress"
|
||||
if (status not in ["Approved", "Rejected", "Appeal In Progress", "Withdrawn", "Unknown"]):
|
||||
raise Exception("Unexpected status " + status)
|
||||
print("Unexpected status " + status)
|
||||
#raise Exception("Unexpected status " + status)
|
||||
if uprn == None:
|
||||
continue
|
||||
entry = {
|
||||
|
Loading…
Reference in New Issue
Block a user