D2568: lfs: convert hexdigest to bytes using sysbytes
durin42 (Augie Fackler)
phabricator at mercurial-scm.org
Fri Mar 2 22:23:36 UTC 2018
durin42 updated this revision to Diff 6397.
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D2568?vs=6391&id=6397
REVISION DETAIL
https://phab.mercurial-scm.org/D2568
AFFECTED FILES
hgext/lfs/wrapper.py
CHANGE DETAILS
diff --git a/hgext/lfs/wrapper.py b/hgext/lfs/wrapper.py
--- a/hgext/lfs/wrapper.py
+++ b/hgext/lfs/wrapper.py
@@ -10,11 +10,12 @@
import hashlib
from mercurial.i18n import _
-from mercurial.node import bin, nullid, short
+from mercurial.node import bin, hex, nullid, short
from mercurial import (
error,
filelog,
+ pycompat,
revlog,
util,
)
@@ -85,7 +86,7 @@
text = text[offset:]
# git-lfs only supports sha256
- oid = hashlib.sha256(text).hexdigest()
+ oid = hex(hashlib.sha256(text).digest())
self.opener.lfslocalblobstore.write(oid, text)
# replace contents with metadata
To: durin42, #hg-reviewers, indygreg
Cc: indygreg, mercurial-devel
More information about the Mercurial-devel
mailing list