Skip to content

Commit

Permalink
Better tag count format
Browse files Browse the repository at this point in the history
  • Loading branch information
WitherredAway committed Jan 25, 2025
1 parent 7f1af3e commit bf32088
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helpers/pagination.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ async def format_page(self, menu, entries):
)
footer = f"Showing entries {start + 1}{start + len(lines)}"
if self.count is not None:
footer += f" out of {self.count}"
footer += f" out of {self.count:,}"
embed.set_footer(text=footer)
return embed

Expand Down

0 comments on commit bf32088

Please sign in to comment.