diff --git a/.gitignore b/.gitignore index f9ae6178..6ad0ffa6 100644 --- a/.gitignore +++ b/.gitignore @@ -13,6 +13,9 @@ moc_* ui_* qrc_* +# Contributors list +gen_contributors.html + # Executables & libraries Ripes RipesTest diff --git a/resources/text/get_contributors.py b/resources/text/get_contributors.py index 433704b8..53a75637 100644 --- a/resources/text/get_contributors.py +++ b/resources/text/get_contributors.py @@ -6,9 +6,10 @@ 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 + name + "" + name + "
" + getRipesVersion() + "