mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-18 21:21:37 +00:00
patman: don't mess with changelog
Don't try to sort and uniq changelog entries as this breaks multiline entries. It will be better to add some real multi-line support but for now just preserve the entries as is. Signed-off-by: Ilya Yanok <ilya.yanok@cogentembedded.com>
This commit is contained in:
parent
a8840cb2f0
commit
73fe07a79a
1 changed files with 2 additions and 3 deletions
|
@ -154,10 +154,9 @@ class Series(dict):
|
|||
for this_commit, text in self.changes[change]:
|
||||
if commit and this_commit != commit:
|
||||
continue
|
||||
if text not in out:
|
||||
out.append(text)
|
||||
out.append(text)
|
||||
if out:
|
||||
out = ['Changes in v%d:' % change] + sorted(out)
|
||||
out = ['Changes in v%d:' % change] + out
|
||||
if need_blank:
|
||||
out = [''] + out
|
||||
final += out
|
||||
|
|
Loading…
Add table
Reference in a new issue