From dbf6960bf30e402f511df71aadee0ca9bf90c3c7 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 10 Oct 2024 12:10:18 +1100 Subject: [PATCH] Fix error in triage module listing script The uncategorized reports were not being created due to incorrect indentation. --- tools/triage/issues_module_listing.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/triage/issues_module_listing.py b/tools/triage/issues_module_listing.py index 9d66791d361..23eee131a09 100755 --- a/tools/triage/issues_module_listing.py +++ b/tools/triage/issues_module_listing.py @@ -105,8 +105,8 @@ def compile_list(severity: str) -> None: modules[current_module_name].buglist.append(f"[#{number}]({html_url})") modules[current_module_name].buglist_full.append(f"* [{title}]({html_url}) - {created_at}\n") break - else: - uncategorized_reports.append(f"[#{number}]({html_url})") + else: + uncategorized_reports.append(f"[#{number}]({html_url})") # Print statistics print(f"Open {severity} Severity bugs as of {date.today()}:\n")