Mercurial > evolve
changeset 4090:6179a40d27c7 stable
evolve: fix use of "'%d' % ctx"
ctx has not been convertible to int since Mercurial commit
38f480502043 (context: remove basectx.__int__ (API), 2018-02-24). I
decided to use "%s" instead to match other similar messages in
evolvecmd.py. I also added a space to match the other messages.
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Thu, 06 Sep 2018 16:14:24 -0700 |
parents | ecd90548a10d |
children | 2c60ad0d54a9 |
files | hgext3rd/evolve/evolvecmd.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext3rd/evolve/evolvecmd.py Thu Sep 06 23:24:26 2018 -0400 +++ b/hgext3rd/evolve/evolvecmd.py Thu Sep 06 16:14:24 2018 -0700 @@ -355,7 +355,7 @@ # we don't handle split in content-divergence yet if len(others) > 1: othersstr = "[%s]" % (','.join([str(i) for i in others])) - msg = _("skipping %d:%s with a changeset that got split" + msg = _("skipping %s: %s with a changeset that got split" " into multiple ones:\n" "|[%s]\n" "| This is not handled by automatic evolution yet\n"