path: teach the `hg path` command to display boolean sub-option
authorPierre-Yves David <pierre-yves.david@octobus.net>
Thu, 15 Apr 2021 19:54:03 +0200
changeset 47190 294a0aa51b8b
parent 47189 b0e92313107e
child 47191 b338d831d18c
path: teach the `hg path` command to display boolean sub-option The next changeset introduce one. Differential Revision: https://phab.mercurial-scm.org/D10450
mercurial/commands.py
--- a/mercurial/commands.py	Fri Apr 16 01:18:28 2021 +0200
+++ b/mercurial/commands.py	Thu Apr 15 19:54:03 2021 +0200
@@ -5151,6 +5151,11 @@
             assert subopt not in (b'name', b'url')
             if showsubopts:
                 fm.plain(b'%s:%s = ' % (name, subopt))
+            if isinstance(value, bool):
+                if value:
+                    value = b'yes'
+                else:
+                    value = b'no'
             fm.condwrite(showsubopts, subopt, b'%s\n', value)
 
     fm.end()