From 33545a212ac8546b84f442c0e484a5778a9c62a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Silvia=20Gonz=C3=A1lez=20Rodr=C3=ADguez?= Date: Fri, 31 Jan 2025 22:33:22 +0100 Subject: [PATCH] Fix formatting --- resources/text/get_contributors.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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)