git-changelog: Change line length limit to 120

Long commit messages + author's name is often > 77 so use 120 instead.

Related: RHEL-40021
This commit is contained in:
Brian C. Lane 2024-06-05 15:06:05 -07:00
parent 25f72cecca
commit b2e2c3d8d5

View File

@ -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:]: