Mercurial > public > mercurial-scm > hg
diff mercurial/templatefilters.py @ 19467:1afe5d3939db stable
template: fix tabindent docstring (issue2880)
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Fri, 19 Jul 2013 12:58:30 -0500 |
parents | 889807c79384 |
children | f08e542ce918 55c763926a28 |
line wrap: on
line diff
--- a/mercurial/templatefilters.py Fri Jul 19 00:20:53 2013 -0500 +++ b/mercurial/templatefilters.py Fri Jul 19 12:58:30 2013 -0500 @@ -325,8 +325,8 @@ return dir def tabindent(text): - """:tabindent: Any text. Returns the text, with every line except the - first starting with a tab character. + """:tabindent: Any text. Returns the text, with every non-empty line + except the first starting with a tab character. """ return indent(text, '\t')