
When writting the changelog of a series it is expect that this order is going to be respected.
The sorting can make it out of context of the order had a meaning for the reader so this patch remove the sort of items.
Signed-off-by: Otavio Salvador otavio@ossystems.com.br --- tools/patman/series.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/patman/series.py b/tools/patman/series.py index dddfab4..34eea92 100644 --- a/tools/patman/series.py +++ b/tools/patman/series.py @@ -164,7 +164,7 @@ class Series(dict): if text not in out: 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