aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp/git.py
diff options
context:
space:
mode:
Diffstat (limited to 'gbp/git.py')
-rw-r--r--gbp/git.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gbp/git.py b/gbp/git.py
index 1e06d55e..3880b473 100644
--- a/gbp/git.py
+++ b/gbp/git.py
@@ -294,7 +294,7 @@ class GitRepository(object):
where = " on %s" % paths if paths else ""
raise GitRepositoryError, ("Error getting commits %s..%s%s" %
(since, until, where))
- return [ commit.strip() for commit in commits[::-1] ]
+ return [ commit.strip() for commit in commits ]
def show(self, id):
"""git-show id"""