mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +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'):
|
def getref(self, revname='HEAD'):
|
||||||
self.checkrepo()
|
self.checkrepo()
|
||||||
repo = git.Repo(self.local)
|
repo = git.Repo(self.local)
|
||||||
if not repo.is_valid_object(revname):
|
try:
|
||||||
return None
|
|
||||||
return repo.commit(revname).hexsha
|
return repo.commit(revname).hexsha
|
||||||
|
except git.BadName:
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
class vcs_gitsvn(vcs):
|
class vcs_gitsvn(vcs):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue