diff mercurial/debugcommands.py @ 41940:70d2d47314e5

manifestcache: test and fix some output of the debug command The message was lacking an end of line. In addition we do not capitalize output in Mercurial.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Thu, 14 Mar 2019 09:11:18 +0000
parents aaad36b88298
children 08fad2ca4eb6
line wrap: on
line diff
--- a/mercurial/debugcommands.py	Thu Dec 27 13:36:17 2018 -0800
+++ b/mercurial/debugcommands.py	Thu Mar 14 09:11:18 2019 +0000
@@ -1486,7 +1486,7 @@
             manifest.read()  # stores revisision in cache too
 
         if not len(cache):
-            ui.write(_('Cache empty'))
+            ui.write(_('cache empty\n'))
         else:
             ui.write(
                 _('Cache contains %d manifest entries, in order of most to '