changeset 41941:08fad2ca4eb6

manifestcache: further fix to debug command output Removing more capital letters. The output will get a test once other issues get fixed.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Thu, 14 Mar 2019 10:24:51 +0000
parents 70d2d47314e5
children fbee66c90cef
files mercurial/debugcommands.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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))
             )