changeset 19467:1afe5d3939db stable

template: fix tabindent docstring (issue2880)
author Matt Mackall <mpm@selenic.com>
date Fri, 19 Jul 2013 12:58:30 -0500
parents 3289080e57cd
children 82c512643bed
files mercurial/templatefilters.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
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')