chiark / gitweb /
Fix to previous fix
authorCiaran Gultnieks <ciaran@ciarang.com>
Fri, 20 Jan 2012 23:17:50 +0000 (23:17 +0000)
committerCiaran Gultnieks <ciaran@ciarang.com>
Fri, 20 Jan 2012 23:17:50 +0000 (23:17 +0000)
common.py

index 949c51a255a4ceae9f557601e3e36c369bbdd04e..d45523753e95376c8a39de38c65ce05a47525ea8 100644 (file)
--- 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")