changeset 3796 | 58133ba5847d |
parent 3795 | 17a11f4ff260 |
child 3804 | 302ffecdd726 |
--- a/mercurial/commands.py Tue Dec 05 16:06:13 2006 -0600 +++ b/mercurial/commands.py Tue Dec 05 16:28:56 2006 -0600 @@ -1155,6 +1155,8 @@ doc = help.helptable[v] if not doc: doc = _("(No help text available)") + if callable(doc): + doc = doc() ui.write("%s\n" % header) ui.write("%s\n" % doc.rstrip())