Mercurial > hg
diff mercurial/commands.py @ 41635:446e1dcc3b5c
annotate: respect ui.relative-paths for "binary file" message
Differential Revision: https://phab.mercurial-scm.org/D5917
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Fri, 08 Feb 2019 13:31:26 -0800 |
parents | eeab8c1c926b |
children | f8b18583049f |
line wrap: on
line diff
--- a/mercurial/commands.py Fri Feb 08 23:29:07 2019 -0800 +++ b/mercurial/commands.py Fri Feb 08 13:31:26 2019 -0800 @@ -407,12 +407,13 @@ if skiprevs: skiprevs = scmutil.revrange(repo, skiprevs) + uipathfn = scmutil.getuipathfn(repo, legacyrelativevalue=True) for abs in ctx.walk(m): fctx = ctx[abs] rootfm.startitem() rootfm.data(path=abs) if not opts.get('text') and fctx.isbinary(): - rootfm.plain(_("%s: binary file\n") % m.rel(abs)) + rootfm.plain(_("%s: binary file\n") % uipathfn(abs)) continue fm = rootfm.nested('lines', tmpl='{rev}: {line}')