(fedmsg) Publish git commits in chronological order.
We currently publish them newest to oldest which can be really confusing if you receive them over email. @remicollet pointed this out in ``#fedora-devel`` last week. See https://github.com/fedora-infra/fedmsg/pull/328
This commit is contained in:
parent
a0c476a7eb
commit
d4b4cf6014
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ for line in lines:
|
||||||
commits = map(_build_commit, revs)
|
commits = map(_build_commit, revs)
|
||||||
|
|
||||||
print "* Publishing information for %i commits" % len(commits)
|
print "* Publishing information for %i commits" % len(commits)
|
||||||
for commit in commits:
|
for commit in reversed(commits):
|
||||||
if commit is None:
|
if commit is None:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue