# HG changeset patch # User Augie Fackler # Date 1476020566 14400 # Node ID 7be6101983606a1a9939f6067b4d1d17ce380750 # Parent d69d86e7d6c8ca984422783fb0554682415c087d debuginstall: use %d instead of %s for formatting an int % formatting on bytes on Python 3 is pickier about which % character we specify. diff -r d69d86e7d6c8 -r 7be610198360 mercurial/commands.py --- a/mercurial/commands.py Sun Oct 09 13:59:20 2016 +0200 +++ b/mercurial/commands.py Sun Oct 09 09:42:46 2016 -0400 @@ -2787,7 +2787,7 @@ if not problems: fm.data(problems=problems) fm.condwrite(problems, 'problems', - _("%s problems detected," + _("%d problems detected," " please check your install!\n"), problems) fm.end()