1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-05 18:50:09 +02:00

Revert "Fix git-svn find-rev, also search for svn revisions after HEAD"

This reverts commit e35a1093cd.
This commit is contained in:
Daniel Martí 2013-11-04 10:43:28 +01:00
parent fc804e68d2
commit 45e68b45d4

View File

@ -315,7 +315,7 @@ class vcs_gitsvn(vcs):
else:
# No tag found, normal svn rev translation
# Translate svn rev into git format
p = subprocess.Popen(['git', 'svn', 'find-rev', 'r' + rev, '--before'],
p = subprocess.Popen(['git', 'svn', 'find-rev', 'r' + rev],
cwd=self.local, stdout=subprocess.PIPE)
git_rev = p.communicate()[0].rstrip()
if p.returncode != 0 or len(git_rev) == 0: