diff mercurial/debugcommands.py @ 51076:786b6225793a

debug-delta-chain: print less data by default This is faster and simpler to read.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Tue, 19 Sep 2023 03:15:12 +0200
parents 2d30d1ba0371
children 3551f2a1c963
line wrap: on
line diff
--- a/mercurial/debugcommands.py	Tue Sep 19 03:00:44 2023 +0200
+++ b/mercurial/debugcommands.py	Tue Sep 19 03:15:12 2023 +0200
@@ -756,7 +756,7 @@
         (
             b'',
             b'all-info',
-            True,
+            False,
             _('compute all information unless specified otherwise'),
         ),
         (
@@ -874,7 +874,7 @@
     if revs_opt:
         revs = [int(r) for r in revs_opt]
 
-    all_info = opts.pop('all_info', True)
+    all_info = opts.pop('all_info', False)
     size_info = opts.pop('size_info', None)
     if size_info is None:
         size_info = all_info