diff --git a/resources/text/get_contributors.py b/resources/text/get_contributors.py index 4f83f425..230b67b6 100644 --- a/resources/text/get_contributors.py +++ b/resources/text/get_contributors.py @@ -6,10 +6,9 @@ lines = git_output.stdout.splitlines() names = [line.partition("\t")[-1] for line in lines] -text = '

' +text = "" for name in names: - text = text + name + "
\n" -text = text + "

" + text = text + "

" + name + "

\n" file = open("gen_contributors.html", "w") file.write(text)