Mercurial > treepkg
changeset 572:b8acd77fca60
Use self.localdir
author | Bjoern Ricks <bricks@intevation.de> |
---|---|
date | Fri, 02 Sep 2011 11:51:37 +0000 |
parents | 7d5abf0bba91 |
children | 49e63875e041 |
files | treepkg/git.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/treepkg/git.py Fri Sep 02 11:50:37 2011 +0000 +++ b/treepkg/git.py Fri Sep 02 11:51:37 2011 +0000 @@ -208,7 +208,7 @@ self.workingcopy = GitWorkingCopy(self.repo, localdir) def list_tags(self): - self.repo.pull(localdir) + self.repo.pull(self.localdir) tags = self.workingcopy.list_tags(self.pattern) return sorted(tags)