Skip to content

Commit

Permalink
Update snapcraft/remote/git.py
Browse files Browse the repository at this point in the history
Co-authored-by: Callahan <[email protected]>
  • Loading branch information
sergiusens and mr-cal authored Nov 30, 2023
1 parent 6267c29 commit 5c83036
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snapcraft/remote/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def commit(self, message: str = "auto commit") -> pygit2.Oid:
target = [] if self._repo.head_is_unborn else [self._repo.head.target]

try:
return self._repo.create_commit(
return str(self._repo.create_commit(
"HEAD", author, author, message, tree, target
)
except pygit2.GitError as error:
Expand Down

0 comments on commit 5c83036

Please sign in to comment.