summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--gbp/git_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gbp/git_utils.py b/gbp/git_utils.py
index 13845d56..7272e10c 100644
--- a/gbp/git_utils.py
+++ b/gbp/git_utils.py
@@ -101,7 +101,7 @@ class GitRepository(object):
['%s..%s' % (start, end), '--', paths])
if ret:
raise GitRepositoryError, "Error getting commits %s..%s%s" % (start, end, ["", " on %s" % paths][len(paths) > 0] )
- return [ commit.strip() for commit in commits ]
+ return [ commit.strip() for commit in commits[::-1] ]
def show(self, id):
"""git-show id"""