hgext/lfs/wrapper.py
changeset 37084 f0b6fbea00cf
parent 36604 f6b9f9ddd0de
child 37132 a54113fcc8c9
--- a/hgext/lfs/wrapper.py	Thu Mar 22 21:19:31 2018 +0900
+++ b/hgext/lfs/wrapper.py	Thu Mar 22 21:56:20 2018 +0900
@@ -19,6 +19,10 @@
     util,
 )
 
+from mercurial.utils import (
+    stringutil,
+)
+
 from ..largefiles import lfutil
 
 from . import (
@@ -95,7 +99,7 @@
     # by default, we expect the content to be binary. however, LFS could also
     # be used for non-binary content. add a special entry for non-binary data.
     # this will be used by filectx.isbinary().
-    if not util.binary(text):
+    if not stringutil.binary(text):
         # not hg filelog metadata (affecting commit hash), no "x-hg-" prefix
         metadata['x-is-binary'] = '0'