summaryrefslogtreecommitdiffstats
path: root/tools
diff options
authorCary Coutant <ccoutant@gmail.com>2024-12-09 10:40:56 -0800
committerCary Coutant <ccoutant@gmail.com>2024-12-09 10:40:56 -0800
commita6a92b796e27de9cb55ee510872ecec211971281 (patch)
tree860e925528c9c158002ec697f242020aabced87f /tools
parentDefer Issue 170427.1: View Numbering. (diff)
Count deferred issues as closed.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/gen-index.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/gen-index.py b/tools/gen-index.py
index 826d296..5a56229 100755
--- a/tools/gen-index.py
+++ b/tools/gen-index.py
@@ -102,6 +102,8 @@ for source_file in issue_files:
102 status_code = "o" 102 status_code = "o"
103 if status.startswith(("acc", "app", "ans", "lang")): 103 if status.startswith(("acc", "app", "ans", "lang")):
104 status_code = "ca" 104 status_code = "ca"
105 elif status.startswith(("def")):
106 status_code = "cd"
105 elif status.startswith(("closed", "dup", "rej", "repl")): 107 elif status.startswith(("closed", "dup", "rej", "repl")):
106 status_code = "cr" 108 status_code = "cr"
107 elif status.startswith("withdrawn"): 109 elif status.startswith("withdrawn"):