Skip to content

Commit 1eed01c

Browse files
committed
Fix doc build
1 parent 62fe8e2 commit 1eed01c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/hooks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ def _check_spec(entries):
221221
if ref and ref not in entries:
222222
problems.append(f"rules.yml: rule {rule['id']} names unknown "
223223
f"inconsistency {ref}")
224-
elif ref and entries[ref].get("status") != "decided":
224+
elif ref and entries[ref].get("status") not in ("decided", "fixed"):
225225
problems.append(
226226
f"rules.yml: rule {rule['id']} states settled behaviour but "
227227
f"{ref} is status '{entries[ref].get('status')}' - a rule may "

0 commit comments

Comments
 (0)