diff options
Diffstat (limited to 'git/db.py')
| -rw-r--r-- | git/db.py | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -42,9 +42,7 @@ class GitCmdObjectDB(LooseObjectDB): def stream(self, binsha: bytes) -> OStream: """For now, all lookup is done by git itself""" - hexsha, typename, size, stream = self._git.stream_object_data( - bin_to_hex(binsha) - ) + hexsha, typename, size, stream = self._git.stream_object_data(bin_to_hex(binsha)) return OStream(hex_to_bin(hexsha), typename, size, stream) # { Interface |
