diff mercurial/debugcommands.py @ 42033:c3a16c282dd8

debugdiscovery: drop duplicated information The old line informing about the local being a superset or subset of the remote is redundant with the newly introduced data. So we drop it.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Tue, 26 Mar 2019 17:26:11 +0100
parents 63165e4a76da
children fd8d13ea1bcc
line wrap: on
line diff
--- a/mercurial/debugcommands.py	Tue Mar 26 17:25:22 2019 +0100
+++ b/mercurial/debugcommands.py	Tue Mar 26 17:26:11 2019 +0100
@@ -851,10 +851,6 @@
 
     ui.write(("common heads: %s\n") %
              " ".join(sorted(short(n) for n in common)))
-    if lheads <= common:
-        ui.write(("local is subset\n"))
-    elif rheads <= common:
-        ui.write(("remote is subset\n"))
 
 _chunksize = 4 << 10