From: Ciaran Gultnieks Date: Tue, 9 Aug 2011 07:38:15 +0000 (+0100) Subject: Fix to bzr pull, broken in recent changes X-Git-Tag: 0.1~1302 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=b97f8f1ee6e7b78f93c61fe92c792858913c2b3c;p=fdroidserver.git Fix to bzr pull, broken in recent changes --- diff --git a/common.py b/common.py index 71028d8c..7da4d5ff 100644 --- a/common.py +++ b/common.py @@ -206,7 +206,7 @@ class vcs_bzr(vcs): sys.exit(1) def pull(self): - if subprocess.call(['bzr', 'update'], + if subprocess.call(['bzr', 'pull'], cwd=self.local) != 0: print "Bzr update failed" sys.exit(1)