Mercurial > public > mercurial-scm > hg-stable
diff mercurial/templater.py @ 19079:1e433b5457fd stable
hgweb: make help verbose again (issue3899)
Due to regression introduced in f5db3092790f, help in hgweb
was rendered in non-verbose form (issue3899)
author | Alexander Plavin <me@aplavin.ru> |
---|---|
date | Mon, 22 Apr 2013 12:27:56 +0400 |
parents | d8d548d868d3 |
children | 6ba6e345961e |
line wrap: on
line diff
--- a/mercurial/templater.py Sun Apr 21 17:33:51 2013 -0500 +++ b/mercurial/templater.py Mon Apr 22 12:27:56 2013 +0400 @@ -299,7 +299,7 @@ text = stringify(args[0][0](context, mapping, args[0][1])) style = stringify(args[1][0](context, mapping, args[1][1])) - return minirst.format(text, style=style) + return minirst.format(text, style=style, keep=['verbose']) methods = { "string": lambda e, c: (runstring, e[1]),