From 5928e9cc250c893eb68392bcc77149766964abac Mon Sep 17 00:00:00 2001 From: Ciaran Gultnieks Date: Fri, 20 Jan 2012 23:17:50 +0000 Subject: [PATCH] Fix to previous fix --- common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.py b/common.py index 949c51a2..d4552375 100644 --- a/common.py +++ b/common.py @@ -112,7 +112,7 @@ class vcs_git(vcs): def pull(self): self.checkrepo() # Might need tags that aren't on a branch. - if subprocess.call(['git', 'fetch', '--all', '--tags', 'origin'], + if subprocess.call(['git', 'fetch', '--tags', 'origin'], cwd=self.local) != 0: raise VCSException("Git fetch failed")