webcommands: use fctx.isbinary

This commit is contained in:
Jun Wu 2017-05-03 18:04:43 -07:00
parent 04c3104f68
commit 58df20579d

View File

@ -808,7 +808,7 @@ def comparison(web, req, tmpl):
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 @@ def annotate(web, req, tmpl):
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)]