changeset 47190 | 294a0aa51b8b |
parent 47071 | 3e381eb557f3 |
child 47415 | b1b3127227be |
--- 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()