From: Ciaran Gultnieks Date: Mon, 10 Oct 2011 14:31:04 +0000 (+0100) Subject: Minor code formatting fix X-Git-Tag: 0.1~1261 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=7fdf043be08a63998bce3d7f51b4b633965b8243;p=fdroidserver.git Minor code formatting fix --- 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)