debuginstall: use %d instead of %s for formatting an int

% formatting on bytes on Python 3 is pickier about which % character
we specify.
This commit is contained in:
Augie Fackler 2016-10-09 09:42:46 -04:00
parent 65a2376373
commit 88491409f0

View File

@ -2787,7 +2787,7 @@ def debuginstall(ui, **opts):
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()