manifestcache: further fix to debug command output
authorPierre-Yves David <pierre-yves.david@octobus.net>
Thu, 14 Mar 2019 10:24:51 +0000
changeset 41941 08fad2ca4eb6
parent 41940 70d2d47314e5
child 41942 fbee66c90cef
manifestcache: further fix to debug command output Removing more capital letters. The output will get a test once other issues get fixed.
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))
             )