From 1fd6ddad71a2f95f254172dbdd176f06da15d9cb Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Fri, 28 Oct 2011 18:40:25 +0200 Subject: GitRepository: rename base_dir to git_dir since that's where it points to. --- gbp/git.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gbp/git.py') diff --git a/gbp/git.py b/gbp/git.py index 74ce711..995d652 100644 --- a/gbp/git.py +++ b/gbp/git.py @@ -190,12 +190,12 @@ class GitRepository(object): @property def path(self): - """The path to the repository""" + """The absolute path to the repository""" return self._path @property - def base_dir(self): - """Get the base of the repository""" + def git_dir(self): + """The absolute path to git's metadata""" return os.path.join(self.path, self._git_dir) @property -- cgit v1.2.3