# HG changeset patch # User Pierre-Yves David # Date 1552559091 0 # Node ID 08fad2ca4eb60dcb897535db9bf8b6e8f7df2557 # Parent 70d2d47314e5910b46d698c6395d2f7ffeca9d03 manifestcache: further fix to debug command output Removing more capital letters. The output will get a test once other issues get fixed. diff -r 70d2d47314e5 -r 08fad2ca4eb6 mercurial/debugcommands.py --- 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)) )