manifestcache: further fix to debug command output
Removing more capital letters. The output will get a test once other issues get
fixed.
--- a/mercurial/debugcommands.py Thu Mar 14 09:11:18 2019 +0000
+++ b/mercurial/debugcommands.py Thu Mar 14 10:24:51 2019 +0000
@@ -1489,7 +1489,7 @@
ui.write(_('cache empty\n'))
else:
ui.write(
- _('Cache contains %d manifest entries, in order of most to '
+ _('cache contains %d manifest entries, in order of most to '
'least recent:\n') % (len(cache),))
totalsize = 0
for nodeid in cache:
@@ -1501,7 +1501,7 @@
hex(nodeid), util.bytecount(size)))
ondisk = cache._opener.stat('manifestfulltextcache').st_size
ui.write(
- _('Total cache data size %s, on-disk %s\n') % (
+ _('total cache data size %s, on-disk %s\n') % (
util.bytecount(totalsize), util.bytecount(ondisk))
)