From a8258d1c532ca8ce320687cae7879ba47d9f143f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicki=20K=C5=99=C3=AD=C5=BEek?= Date: Mon, 15 Jul 2024 15:59:19 +0200 Subject: [PATCH] Remove authors from gitchangelog output Given our workflow, this could easily lead to misattribution. It's also not an actionable information and it can be found in the MR / git log instead. --- contrib/gitchangelog/gitchangelog.py | 1 - 1 file changed, 1 deletion(-) diff --git a/contrib/gitchangelog/gitchangelog.py b/contrib/gitchangelog/gitchangelog.py index bd71d25bff..84380bab75 100755 --- a/contrib/gitchangelog/gitchangelog.py +++ b/contrib/gitchangelog/gitchangelog.py @@ -1508,7 +1508,6 @@ def rest_py(data, opts={}): def render_commit(commit, opts=opts): subject = commit["subject"] - subject += " [%s]" % (", ".join(commit["authors"]),) entry = indent("\n".join(textwrap.wrap(subject)), first="- ").strip() + "\n"