Merge branch 'master' of gitorious.org:f-droid/fdroidserver

This commit is contained in:
Ciaran Gultnieks 2013-10-31 15:51:06 +00:00
commit 41c643d301

View file

@ -252,7 +252,7 @@ class vcs_gitsvn(vcs):
if i.startswith('trunk='):
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:]
if subprocess.call([gitsvn_cmd + " %s %s" % (remote_split[0], self.local)],