From b97f8f1ee6e7b78f93c61fe92c792858913c2b3c Mon Sep 17 00:00:00 2001 From: Ciaran Gultnieks Date: Tue, 9 Aug 2011 08:38:15 +0100 Subject: [PATCH] Fix to bzr pull, broken in recent changes --- common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.30.2