From f3df4bf7e0ba64f78b33f6d2a3dd3439bfebbd3f Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Sat, 22 Oct 2011 13:40:50 +0200 Subject: GitRepository: rename commits to get_commits Git-Dch: Ignore --- gbp/git.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'gbp/git.py') diff --git a/gbp/git.py b/gbp/git.py index 737004c..4b13911 100644 --- a/gbp/git.py +++ b/gbp/git.py @@ -358,8 +358,8 @@ class GitRepository(object): else: return [] - def commits(self, since=None, until=None, paths=None, options=None, - first_parent=False): + def get_commits(self, since=None, until=None, paths=None, options=None, + first_parent=False): """ Get commits from since to until touching paths @@ -368,6 +368,9 @@ class GitRepository(object): @param paths: only list commits touching paths @param options: list of options passed to git log @type options: list of strings + @param first_parent: only follow first parent when seeing a + merge commit + @type first_parent: bool """ args = ['--pretty=format:%H'] -- cgit v1.2.3