mercurial/help.py
changeset 40954 8604f130eb43
parent 40953 05abb5fb146a
child 40955 f6187e60f792
--- a/mercurial/help.py	Fri Dec 14 13:20:00 2018 -0800
+++ b/mercurial/help.py	Fri Dec 14 13:33:12 2018 -0800
@@ -163,14 +163,14 @@
 
         if isinstance(default, fancyopts.customopt):
             default = default.getdefaultvalue()
-        if default and not callable(default):
+        if (default and not callable(default)) or default is False:
             # default is of unknown type, and in Python 2 we abused
             # the %s-shows-repr property to handle integers etc. To
             # match that behavior on Python 3, we do str(default) and
             # then convert it to bytes.
             defaultstr = pycompat.bytestr(default)
-            if default is True:
-                defaultstr = _("on")
+            if isinstance(default, bool):
+                defaultstr = _("on") if default else _("off")
             desc += _(" (default: %s)") % defaultstr
 
         if isinstance(default, list):