aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorIlya Yanok <ilya.yanok@cogentembedded.com>2012-08-06 23:46:07 +0000
committerWolfgang Denk <wd@denx.de>2012-09-02 16:24:07 +0200
commit73fe07a79a65600acce3d96c0b0d6ad1ca3e8551 (patch)
treead2c3dfe921bf354538b2557004ba0bbfb215b7c /tools
parenta8840cb2f040b8aa1c870b7431ce27e9ec81284e (diff)
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>
Diffstat (limited to 'tools')
-rw-r--r--tools/patman/series.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/patman/series.py b/tools/patman/series.py
index 05d9e73a4..4e7cb71c9 100644
--- a/tools/patman/series.py
+++ b/tools/patman/series.py
@@ -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