From: Daniel Martí Date: Thu, 31 Oct 2013 14:54:52 +0000 (+0100) Subject: Minor fixes to git-svn X-Git-Tag: 0.1~255 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=42a41dc3a95aaef78e88b4e83e71b9f943003376;p=fdroidserver.git Minor fixes to git-svn --- diff --git a/fdroidserver/common.py b/fdroidserver/common.py index 94dd165c..92e866a1 100644 --- a/fdroidserver/common.py +++ b/fdroidserver/common.py @@ -250,11 +250,11 @@ class vcs_gitsvn(vcs): remote_split = self.remote.split(';') for i in remote_split[1:]: if i.startswith('trunk='): - gitsvn_cmd += '-T %s' % i[6:] + gitsvn_cmd += ' -T %s' % i[6:] elif i.startswith('tags='): - gitsvn_cmd += '-t %s', i[5:] + gitsvn_cmd += ' -t %s' % i[5:] elif i.startswith('branches='): - gitsvn_cmd += '-b %s' % i[9:] + gitsvn_cmd += ' -b %s' % i[9:] if subprocess.call([gitsvn_cmd + " %s %s" % (remote_split[0], self.local)], shell=True) != 0: raise VCSException("Git clone failed")