diff --git a/mercurial/debugcommands.py b/mercurial/debugcommands.py --- a/mercurial/debugcommands.py +++ b/mercurial/debugcommands.py @@ -1503,7 +1503,7 @@ def debugmanifestfulltextcache(ui, repo, totalsize = 0 for nodeid in cache: # Use cache.get to not update the LRU order - data = cache.get(nodeid) + data = cache.peek(nodeid) size = len(data) totalsize += size + 24 # 20 bytes nodeid, 4 bytes size ui.write(_('id: %s, size %s\n') % (