Tools: Update issues script after label rename from priority to severity

This commit is contained in:
Thomas Dinges
2024-08-14 14:42:04 +02:00
parent 075bdbcd63
commit d56196ad96

View File

@@ -61,7 +61,7 @@ severity_labelid = {
def compile_list(severity: str) -> None:
label = f"Priority/{severity}"
label = f"Severity/{severity}"
issues_json = gitea_json_issues_search(
type="issues",
state="open",
@@ -92,7 +92,7 @@ def compile_list(severity: str) -> None:
uncategorized_reports.append(f"[#{number}]({html_url})")
# Print statistics
print(f"Open {severity} Priority bugs as of {date.today()}:\n")
print(f"Open {severity} Severity bugs as of {date.today()}:\n")
# Module overview with numbers
total = 0