diff options
| author | Cary Coutant <ccoutant@gmail.com> | 2025-03-27 17:16:00 -0700 |
|---|---|---|
| committer | Cary Coutant <ccoutant@gmail.com> | 2025-03-27 17:16:00 -0700 |
| commit | b0a86a3bab5e437d5f7d161f9fd5df4f09f7520b (patch) | |
| tree | 632d2aed2adedf567e91a903ba67d5682864c870 | |
| parent | Add issue 250325.1: New lang code for Nim. (diff) | |
Add support for rescinded status.
| -rwxr-xr-x | tools/gen-index.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gen-index.py b/tools/gen-index.py index 5a56229..aeca8a0 100755 --- a/tools/gen-index.py +++ b/tools/gen-index.py | |||
| @@ -104,7 +104,7 @@ for source_file in issue_files: | |||
| 104 | status_code = "ca" | 104 | status_code = "ca" |
| 105 | elif status.startswith(("def")): | 105 | elif status.startswith(("def")): |
| 106 | status_code = "cd" | 106 | status_code = "cd" |
| 107 | elif status.startswith(("closed", "dup", "rej", "repl")): | 107 | elif status.startswith(("closed", "dup", "rej", "resc", "repl")): |
| 108 | status_code = "cr" | 108 | status_code = "cr" |
| 109 | elif status.startswith("withdrawn"): | 109 | elif status.startswith("withdrawn"): |
| 110 | status_code = "cw" | 110 | status_code = "cw" |
