Skip to content

Commit

Permalink
minor bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rahul-jha98 committed Jan 26, 2021
1 parent 8e0d820 commit 2ea23bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generate_images.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ async def generate_overview(s: Stats) -> None:
changed = (await s.lines_changed)[0] + (await s.lines_changed)[1]
output = re.sub("{{ lines_changed }}", f"{changed:,}", output)
output = re.sub("{{ views }}", f"{await s.views:,}", output)
output = re.sub("{{ repos }}", f"{len(await s.repos):,}", output)
output = re.sub("{{ repos }}", f"{len(await s.all_repos):,}", output)

generate_output_folder()
with open("generated/overview.svg", "w") as f:
Expand Down

0 comments on commit 2ea23bb

Please sign in to comment.