diff options
Diffstat (limited to 'lib/git/utils.py')
-rw-r--r-- | lib/git/utils.py | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/lib/git/utils.py b/lib/git/utils.py index 3fb7fbf8..38501292 100644 --- a/lib/git/utils.py +++ b/lib/git/utils.py @@ -10,12 +10,14 @@ import time import tempfile from gitdb.util import ( - make_sha, - FDStreamWrapper, - LockedFD, - file_contents_ro, - LazyMixin - ) + make_sha, + FDStreamWrapper, + LockedFD, + file_contents_ro, + LazyMixin, + to_hex_sha, + to_bin_sha + ) def stream_copy(source, destination, chunk_size=512*1024): |