From: Alex Chiang Date: Fri, 10 Jul 2009 09:32:06 +0000 (+0100) Subject: fix stg mail %(shortlog)s order X-Git-Tag: v0.15-rc1~2 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/stgit/commitdiff_plain/c9379a15770a699c0d64ae0897ea1a8e235a2c71?ds=sidebyside fix stg mail %(shortlog)s order When using the %(shortlog)s variable, the patches are listed in the cover letter in the reverse order of the actual patch series. We should list them in the actual order of the patch series instead. Signed-off-by: Alex Chiang Signed-off-by: Catalin Marinas --- diff --git a/stgit/commands/mail.py b/stgit/commands/mail.py index 69b19fa..abd42e4 100644 --- a/stgit/commands/mail.py +++ b/stgit/commands/mail.py @@ -399,7 +399,7 @@ def __build_cover(tmpl, patches, msg_id, options): 'totalnr': total_nr_str, 'number': number_str, 'shortlog': stack.shortlog(crt_series.get_patch(p) - for p in patches), + for p in reversed(patches)), 'diffstat': gitlib.diffstat(git.diff( rev1 = git_id(crt_series, '%s^' % patches[0]), rev2 = git_id(crt_series, '%s' % patches[-1]),