summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 05d9e73a46..4e7cb71c98 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
OpenPOWER on IntegriCloud