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:
parent
25f72cecca
commit
b2e2c3d8d5
@ -109,7 +109,7 @@ class ChangeLog:
|
|||||||
def formatLog(self):
|
def formatLog(self):
|
||||||
s = ""
|
s = ""
|
||||||
for msg in self.getLog():
|
for msg in self.getLog():
|
||||||
sublines = textwrap.wrap(msg[0], 77)
|
sublines = textwrap.wrap(msg[0], 120)
|
||||||
|
|
||||||
s = s + "- %s\n" % sublines[0]
|
s = s + "- %s\n" % sublines[0]
|
||||||
for line in sublines[1:] + msg[1:]:
|
for line in sublines[1:] + msg[1:]:
|
||||||
|
Loading…
Reference in New Issue
Block a user