From cdc008d7a9929e6d3929892978fe1353aabea05e Mon Sep 17 00:00:00 2001 From: Egbert Rijke Date: Tue, 19 Sep 2023 13:19:50 +0200 Subject: [PATCH] Add a dot after the sentence "Content created by..." (#790) --- scripts/preprocessor_git_metadata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/preprocessor_git_metadata.py b/scripts/preprocessor_git_metadata.py index 85e57002d1..2fd400a480 100644 --- a/scripts/preprocessor_git_metadata.py +++ b/scripts/preprocessor_git_metadata.py @@ -89,7 +89,7 @@ def get_author_element_for_file(filename, include_contributors, contributors): author['displayName'] for author in sorted_authors_from_raw_shortlog_lines(raw_authors_git_output, contributors) ] - attribution_text = f'

Content created by {format_multiple_authors_attribution(author_names)}

' + attribution_text = f'

Content created by {format_multiple_authors_attribution(author_names)}.

' file_log_output = subprocess.run([ 'git', 'log',