forked from M-Labs/artiq
1
0
Fork 0

master: migrate deprecated pygit2 commit.hex attr

This commit is contained in:
Sebastien Bourdeauducq 2024-08-24 10:44:34 +08:00
parent 352cf907ee
commit fbb1a2c25d
1 changed files with 3 additions and 4 deletions

View File

@ -206,10 +206,9 @@ class GitBackend:
a git hash
"""
commit, _ = self.git.resolve_refish(rev)
logger.debug('Resolved git ref "%s" into "%s"', rev, commit.hex)
return commit.hex
commit_id = str(commit.id)
logger.debug('Resolved git ref "%s" into "%s"', rev, commit_id)
return commit_id
def request_rev(self, rev):
rev = self._get_pinned_rev(rev)