diff --git a/Tools/scripts/summarize_stats.py b/Tools/scripts/summarize_stats.py index 2f966f6a1046da..5550a1c022c068 100644 --- a/Tools/scripts/summarize_stats.py +++ b/Tools/scripts/summarize_stats.py @@ -831,10 +831,10 @@ def calculate_rows(self, stats: Stats) -> Rows: if v != 0: last_non_zero = len(rows) rows.append( - (f"<= {entry}", Count(v), Ratio(int(v), stats[self.den])) + (f"<= {entry:,d}", Count(v), Ratio(int(v), stats[self.den])) ) # Don't include any zero entries at the end - rows = rows[:last_non_zero + 1] + rows = rows[: last_non_zero + 1] return rows class UnsupportedOpcodesTable(SimpleChangeTable):