From b2e2c3d8d595b76e7ea0c90f24807f2f9c86ad14 Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Wed, 5 Jun 2024 15:06:05 -0700 Subject: [PATCH] git-changelog: Change line length limit to 120 Long commit messages + author's name is often > 77 so use 120 instead. Related: RHEL-40021 --- tools/git-changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/git-changelog b/tools/git-changelog index c8cf60e..c53d6c3 100755 --- a/tools/git-changelog +++ b/tools/git-changelog @@ -109,7 +109,7 @@ class ChangeLog: def formatLog(self): s = "" for msg in self.getLog(): - sublines = textwrap.wrap(msg[0], 77) + sublines = textwrap.wrap(msg[0], 120) s = s + "- %s\n" % sublines[0] for line in sublines[1:] + msg[1:]: