webcommands: use fctx.isbinary
authorJun Wu <quark@fb.com>
Wed, 03 May 2017 18:04:43 -0700
changeset 32136 f238a483a1fd
parent 32135 347ab2d47463
child 32141 4fadea09feca
webcommands: use fctx.isbinary
mercurial/hgweb/webcommands.py
--- a/mercurial/hgweb/webcommands.py	Wed May 03 18:03:38 2017 -0700
+++ b/mercurial/hgweb/webcommands.py	Wed May 03 18:04:43 2017 -0700
@@ -808,7 +808,7 @@
         context = parsecontext(web.config('web', 'comparisoncontext', '5'))
 
     def filelines(f):
-        if util.binary(f.data()):
+        if f.isbinary():
             mt = mimetypes.guess_type(f.path())[0]
             if not mt:
                 mt = 'application/octet-stream'
@@ -886,7 +886,7 @@
             yield p
 
     def annotate(**map):
-        if util.binary(fctx.data()):
+        if fctx.isbinary():
             mt = (mimetypes.guess_type(fctx.path())[0]
                   or 'application/octet-stream')
             lines = [((fctx.filectx(fctx.filerev()), 1), '(binary:%s)' % mt)]