branch | stable |
changeset 50694 | e9c676ad18f1 |
parent 50692 | 9d4a2ea3dcb9 |
child 50718 | 0ab3956540a6 |
--- a/mercurial/commands.py Thu Jun 15 09:51:29 2023 +0200 +++ b/mercurial/commands.py Sat Jun 17 23:47:31 2023 +0200 @@ -5214,11 +5214,6 @@ 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' display = urlutil.path_suboptions_display[subopt] value = display(value) fm.condwrite(showsubopts, subopt, b'%s\n', value)