1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-17 10:40:12 +02:00

Minor code formatting fix

This commit is contained in:
Ciaran Gultnieks 2011-10-10 15:31:04 +01:00
parent 28dc5cf3ab
commit 7fdf043be0

View File

@ -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)