# HG changeset patch # User Adrian Buehlmann # Date 2012-07-10 15:52:43 # Node ID 6b40cc67ceb4cd9793d7ccef7b678e97829a1611 # Parent f7152a0d90dfca7e66efabf85fe864a85de68667 hgweb: show help with verbose sections included This makes sure we see the same help info as with 'hg help --verbose' on the command line, that is, with verbose sections included. diff --git a/mercurial/hgweb/webcommands.py b/mercurial/hgweb/webcommands.py --- a/mercurial/hgweb/webcommands.py +++ b/mercurial/hgweb/webcommands.py @@ -902,6 +902,7 @@ def help(web, req, tmpl): u = webutil.wsgiui() u.pushbuffer() + u.verbose = True try: commands.help_(u, topicname) except error.UnknownCommand: