Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Silvia González Rodríguez committed Jan 31, 2025
1 parent 1552f3e commit 33545a2
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions resources/text/get_contributors.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@
lines = git_output.stdout.splitlines()
names = [line.partition("\t")[-1] for line in lines]

text = '<p align="center" style="margin: 0">'
text = ""
for name in names:
text = text + name + "</br>\n"
text = text + "</p>"
text = text + "<p align=\"center\" style=\"margin: 0\">" + name + "</p>\n"

file = open("gen_contributors.html", "w")
file.write(text)
Expand Down

0 comments on commit 33545a2

Please sign in to comment.