mercurial/simplemerge.py
changeset 37084 f0b6fbea00cf
parent 35368 93c4958d987c
child 38783 e7aa113b14f7
--- a/mercurial/simplemerge.py	Thu Mar 22 21:19:31 2018 +0900
+++ b/mercurial/simplemerge.py	Thu Mar 22 21:56:20 2018 +0900
@@ -23,7 +23,9 @@
     error,
     mdiff,
     pycompat,
-    util,
+)
+from .utils import (
+    stringutil,
 )
 
 class CantReprocessAndShowBase(Exception):
@@ -397,7 +399,7 @@
 def _verifytext(text, path, ui, opts):
     """verifies that text is non-binary (unless opts[text] is passed,
     then we just warn)"""
-    if util.binary(text):
+    if stringutil.binary(text):
         msg = _("%s looks like a binary file.") % path
         if not opts.get('quiet'):
             ui.warn(_('warning: %s\n') % msg)