From 7fdf043be08a63998bce3d7f51b4b633965b8243 Mon Sep 17 00:00:00 2001 From: Ciaran Gultnieks Date: Mon, 10 Oct 2011 15:31:04 +0100 Subject: [PATCH] Minor code formatting fix --- common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.py b/common.py index 057ecc07..46e05114 100644 --- a/common.py +++ b/common.py @@ -187,7 +187,7 @@ class vcs_hg(vcs): class vcs_bzr(vcs): def clone(self): - if subprocess.call(['bzr', 'branch', self.remote, self.local]) !=0: + if subprocess.call(['bzr', 'branch', self.remote, self.local]) != 0: print "Bzr branch failed" sys.exit(1)