# HG changeset patch # User Jun Wu # Date 1493859883 25200 # Node ID f238a483a1fd0d4d9ecbd3fd63f7cda7265e5176 # Parent 347ab2d47463fce7a7ae17ee209fbb0e50e824e6 webcommands: use fctx.isbinary diff -r 347ab2d47463 -r f238a483a1fd 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)]