1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-11-14 11:00:10 +01:00

Fix to bzr pull, broken in recent changes

This commit is contained in:
Ciaran Gultnieks 2011-08-09 08:38:15 +01:00
parent 5babb3c00e
commit b97f8f1ee6

View File

@ -206,7 +206,7 @@ class vcs_bzr(vcs):
sys.exit(1) sys.exit(1)
def pull(self): def pull(self):
if subprocess.call(['bzr', 'update'], if subprocess.call(['bzr', 'pull'],
cwd=self.local) != 0: cwd=self.local) != 0:
print "Bzr update failed" print "Bzr update failed"
sys.exit(1) sys.exit(1)