mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 14:32:28 +03:00
Use old python-git exception API for getref
The is_valid_object method is not even in Debian bullseye.
This commit is contained in:
parent
2aebc48a65
commit
0f48294a6e
1 changed files with 3 additions and 2 deletions
|
@ -1253,9 +1253,10 @@ class vcs_git(vcs):
|
|||
def getref(self, revname='HEAD'):
|
||||
self.checkrepo()
|
||||
repo = git.Repo(self.local)
|
||||
if not repo.is_valid_object(revname):
|
||||
try:
|
||||
return repo.commit(revname).hexsha
|
||||
except git.BadName:
|
||||
return None
|
||||
return repo.commit(revname).hexsha
|
||||
|
||||
|
||||
class vcs_gitsvn(vcs):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue