Skip to content

Commit

Permalink
fix the summarize bug (dotnet#60834)
Browse files Browse the repository at this point in the history
  • Loading branch information
kunalspathak authored Oct 25, 2021
1 parent 38cd1d6 commit 9554e37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coreclr/scripts/antigen_summarize.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def print_unique_issues_summary(issues_directory, platform, arch, build_config):
f.write("```\n\n")

if len(remaining_issues) > 0:
f.write("# {} uncategorized issues found\n", len(remaining_issues))
f.write("# {} uncategorized issues found\n".format(len(remaining_issues)))
# Turned off since the output does not seem particularly useful
# for issue, occurences in sorted(remaining_issues.items(), key=lambda p: p[1], reverse=True):
# f.write("## {} occurences\n".format(occurences))
Expand Down

0 comments on commit 9554e37

Please sign in to comment.