(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:
Ralph Bean 2015-03-29 13:55:07 +00:00
parent a0c476a7eb
commit d4b4cf6014

View file

@ -118,7 +118,7 @@ for line in lines:
commits = map(_build_commit, revs)
print "* Publishing information for %i commits" % len(commits)
for commit in commits:
for commit in reversed(commits):
if commit is None:
continue