From: Nicki Křížek Date: Mon, 15 Jul 2024 13:59:19 +0000 (+0200) Subject: Remove authors from gitchangelog output X-Git-Tag: alessio/regression/026024a6ae~30^2~9 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a8258d1c532ca8ce320687cae7879ba47d9f143f;p=thirdparty%2Fbind9.git 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. --- diff --git a/contrib/gitchangelog/gitchangelog.py b/contrib/gitchangelog/gitchangelog.py index bd71d25bfff..84380bab759 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"