Mercurial > public > mercurial-scm > hg-stable
diff mercurial/hgweb.py @ 1511:a91bfbbe88d3
hgweb: remove redundant rstrip filter
author | TK Soh <teekaysoh@yahoo.com> |
---|---|
date | Tue, 08 Nov 2005 10:35:00 -0800 |
parents | 78590fb4a82b |
children | 0d47bb884330 |
line wrap: on
line diff
--- a/mercurial/hgweb.py Tue Nov 08 10:34:50 2005 -0800 +++ b/mercurial/hgweb.py Tue Nov 08 10:35:00 2005 -0800 @@ -165,7 +165,6 @@ common_filters = { "escape": cgi.escape, "strip": lambda x: x.strip(), - "rstrip": lambda x: x.rstrip(), "age": age, "date": lambda x: util.datestr(x), "addbreaks": nl2br,